GLWidget/GLWidgetTestGTK3/Program.cs

21 lines
382 B
C#
Raw Normal View History

2020-09-03 16:25:24 +00:00
using System;
using System.Reflection;
2020-09-08 11:39:59 +00:00
using System.Runtime.InteropServices;
2020-09-03 16:25:24 +00:00
using Gtk;
using OpenTK;
namespace GLWidgetTestGTK3
{
class MainClass
{
public static void Main(string[] args)
{
2020-09-08 11:39:59 +00:00
GTKBindingHelper.InitXThreads();
2020-09-03 16:25:24 +00:00
// GTK
Application.Init();
MainWindow win = MainWindow.Create();
win.Show();
Application.Run();
}
}
}