mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
17 lines
256 B
C#
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
|
|
}
|