First commit

This commit is contained in:
Michele Scandura 2020-10-30 20:02:00 +00:00
parent 848f3fdbdc
commit 024df6278c
123 changed files with 231317 additions and 0 deletions

14
MyGame/Program.cs Normal file
View file

@ -0,0 +1,14 @@
using System;
namespace MyGame
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
}