ShiftOS_TheReturn/ShiftOS.Frontend/Program.cs

21 lines
393 B
C#
Raw Permalink Normal View History

2017-07-02 17:31:39 +00:00
using System;
namespace ShiftOS.Frontend
{
/// <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 ShiftOS())
game.Run();
}
}
}