Files
MonoGame.Extended/Source/Sandbox/Program.cs
T
2015-07-20 21:58:08 +10:00

17 lines
256 B
C#

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