mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 01:45:32 +00:00
9 lines
189 B
Forth
9 lines
189 B
Forth
|
namespace GtkNamespace
|
||
|
|
||
|
open Gtk
|
||
|
|
||
|
type Gtk_Widget (builder : Builder) =
|
||
|
inherit Box(builder.GetObject("Gtk_Widget").Handle)
|
||
|
|
||
|
new() = new Gtk_Widget(new Builder("Gtk_Widget.glade"))
|