space-pew/SpacePew/Program.cs

27 lines
422 B
C#
Raw Permalink Normal View History

2015-12-04 10:23:49 +01:00
#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
}