Files
LuaCsForBarotraumaEP/Launcher2/Program.cs
2015-09-11 22:13:44 +03:00

27 lines
508 B
C#

#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
#endregion
namespace Launcher2
{
#if WINDOWS || LINUX
/// <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
}