github-classroom[bot] e77901d4f0
Initial commit
2025-09-11 09:05:42 +00:00

24 lines
601 B
C#

using OpenTK.Mathematics;
using OpenTK.Windowing.Desktop;
using System;
namespace TheLabs
{
public static class Program
{
public static void Main()
{
var nativeWindowSettings = new NativeWindowSettings
{
Size = new Vector2i(800, 600),
Title = "My OpenTK Example Program"
};
using (var window = new MyExampleWindow(GameWindowSettings.Default,
nativeWindowSettings))
{
window.Run();
}
}
}
}