Initial commit

This commit is contained in:
2020-04-18 08:16:46 -06:00
commit c868f03944
11 changed files with 157 additions and 0 deletions

14
Collector/Program.cs Normal file
View File

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