mirror of
https://github.com/Ryujinx/GLWidget.git
synced 2024-12-22 15:25:36 +00:00
22 lines
413 B
C#
22 lines
413 B
C#
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using Gtk;
|
|
using OpenTK;
|
|
|
|
namespace GLWidgetTestGTK3
|
|
{
|
|
class MainClass
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
// GTKBindingHelper.InitXThreads();
|
|
// GTK
|
|
GTKBindingHelper.InitializeGlBindings();
|
|
Application.Init();
|
|
MainWindow win = MainWindow.Create();
|
|
win.Show();
|
|
Application.Run();
|
|
}
|
|
}
|
|
} |