experiments-monogame/UPWG/UPWG.Main/Program.cs

14 lines
228 B
C#
Executable File

using System;
namespace UPWG.Main
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new BattleTest())
game.Run();
}
}
}