14 lines
No EOL
228 B
C#
Executable file
14 lines
No EOL
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();
|
|
}
|
|
}
|
|
} |