#region Arthea License
/***********************************************************************
* Arthea MUD by R. Jennings (2007) http://arthea.googlecode.com/ *
* By using this code you comply with the Artistic and GPLv2 Licenses. *
***********************************************************************/
#endregion
using System;
using System.Windows.Forms;
using Arthea;
namespace ArtheaGUI
{
internal static class Program
{
#region [rgn] Methods (1)
// [rgn] Private Methods (1)
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main(string[] Args)
{
Arguments CommandLine = new Arguments(Args);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm(CommandLine["reboot"] != null));
}
#endregion [rgn]
}
}