1
0
forked from s425077/PotatoPlan
JoelForkTest/Game1/Program.cs
2020-05-03 13:05:05 +02:00

17 lines
248 B
C#

using System;
namespace Game1
{
#if WINDOWS || LINUX
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
#endif
}