23 lines
414 B
C#

using System;
namespace UniversalEditor.Engines.GTK
{
public static class GtkApplication
{
public static bool Initialize(ref int argc, ref string[] argv)
{
bool check = Internal.GTK.Methods.gtk_init_check (ref argc, ref argv);
return check;
}
public static void Run()
{
Internal.GTK.Methods.gtk_main ();
}
public static void Quit()
{
Internal.GTK.Methods.gtk_main_quit ();
}
}
}