space-pew/SpacePew/Program.cs
Magnus von Wachenfeldt 2a9d8ce416 move to github
2015-12-04 10:23:49 +01:00

27 lines
422 B
C#

#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
#endregion
namespace SpacePew
{
#if WINDOWS || LINUX
/// <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 MainGame())
game.Run();
}
}
#endif
}