Initial commit
This commit is contained in:
11
C#/OpenTKTutorial/Program.cs
Normal file
11
C#/OpenTKTutorial/Program.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using OpenTK.Windowing.Common;
|
||||
|
||||
namespace OpenTKTutorial {
|
||||
class Program {
|
||||
static void Main(string[] args) {
|
||||
using var game = new Game(800, 600, "Test Game");
|
||||
game.VSync = VSyncMode.On;
|
||||
game.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user