🎉 init commit

This commit is contained in:
NikolajDanger
2021-10-24 14:49:57 +02:00
commit fe2572f9f2
7 changed files with 154 additions and 0 deletions

14
Program.cs Normal file
View File

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