Create OpenGL context and clear background :)

This commit is contained in:
2023-02-28 22:26:47 +01:00
parent d32390b21c
commit fdbd21f248
5 changed files with 111 additions and 24 deletions

8
TestGame/Program.cs Normal file
View File

@@ -0,0 +1,8 @@
class Program
{
static void Main(string[] args)
{
var game = new TestGame();
game.Start();
}
}