forked from s425077/PotatoPlan
17 lines
248 B
C#
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
|
|
}
|