mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-02-01 16:41:30 +00:00
60376ae510
* feat: GtkSharp net6 workload * feat(Workload): GtkSharp template packs * chore: Support .NET SDK 6.0.300 And also changed the build script to target SDK bands. * build: Workload install and uninstall targets
9 lines
193 B
Forth
9 lines
193 B
Forth
namespace GtkNamespace
|
|
|
|
open Gtk
|
|
|
|
type Gtk_Window (builder : Builder) =
|
|
inherit Window(builder.GetRawOwnedObject("Gtk_Window"))
|
|
|
|
new() = new Gtk_Window(new Builder("Gtk_Window.glade"))
|