ShiftOS_TheReturn/ShiftOS.Frontend/Program.cs
2017-07-02 13:31:39 -04:00

20 lines
393 B
C#

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();
}
}
}