Port Battle to C#

This commit is contained in:
boltyk
2021-02-28 13:31:29 -08:00
parent 6ba3c465f1
commit 4fa20e5694
4 changed files with 392 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace Battle
{
class Program
{
static void Main(string[] args)
{
new Game().Run();
}
}
}