2017-02-21 14:01:56 -07:00
|
|
|
|
using System;
|
2017-03-25 19:22:45 -04:00
|
|
|
|
using System.Drawing.Text;
|
2017-02-21 14:01:56 -07:00
|
|
|
|
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
|
|
|
|
|
2017-02-21 14:01:56 -07: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());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|