/*
* Created by SharpDevelop.
* User: BITL
* Date: 5/21/2017
* Time: 4:36 PM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Windows.Forms;
namespace RBX2007_Launcher
{
///
/// Class with program entry point.
///
internal sealed class Program
{
static string ProcessInput(string s)
{
return s;
}
///
/// Program entry point.
///
[STAThread]
private static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new SoloForm());
}
}
}