Histacom2/TimeHACK.Main/Program.cs

29 lines
701 B
C#
Raw Normal View History

using System;
2017-03-25 19:22:45 -04:00
using System.Drawing.Text;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TimeHACK
{
static class Program
{
internal static string gameID;
2017-03-25 19:22:45 -04:00
/// <summary>
/// The main entry point for the application.
/// Run TitleScreen.cs at launch.
/// </summary>
[STAThread]
static void Main()
{
// Set the GameID
gameID = "Nightly 1.0.14";
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new TitleScreen());
}
}
}