1
0
forked from s425077/PotatoPlan
JoelForkTest/Game1/Program.cs

17 lines
248 B
C#
Raw Permalink Normal View History

2020-04-07 17:50:31 +02:00
using System;
namespace Game1
{
#if WINDOWS || LINUX
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
#endif
}