recrownedathenaeum/TestGame/Program.cs

21 lines
386 B
C#
Raw Normal View History

using System;
namespace TestGame
{
/// <summary>
/// The main class.
/// </summary>
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using (var game = new TestGame())
game.Run();
}
}
}