add platformer window infrastructure

This commit is contained in:
2018-04-08 20:29:20 -04:00
parent edb2985a98
commit f175dd84f4
12 changed files with 328 additions and 0 deletions

11
Platformer/Driver.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace Platformer
{
internal static class Driver
{
public static void Main(string[] args)
{
using (var pw = new PlatformWindow())
pw.Run();
}
}
}