21 lines
No EOL
382 B
C#
21 lines
No EOL
382 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
|
|
Application.Init();
|
|
MainWindow win = MainWindow.Create();
|
|
win.Show();
|
|
Application.Run();
|
|
}
|
|
}
|
|
} |