This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.Frontend/Program.cs

21 lines
393 B
C#
Raw Normal View History

2017-07-02 13:31:39 -04: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();
}
}
}