blob: e910d08246c476f3b653ff2f15549dab61fc1dfe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System;
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;
/// <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());
}
}
}
|