Files
LuaCsForBarotraumaEP/Barotrauma/Launcher/Program.cs
2019-03-18 20:39:27 +02:00

27 lines
514 B
C#

#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
#endregion
namespace Launcher
{
#if WINDOWS || LINUX || OSX
/// <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 LauncherMain())
game.Run();
}
}
#endif
}