mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-22 18:02:16 +00:00
21 lines
393 B
C#
21 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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|