blob: 56b0bf88213d6e26e0a759614c33134971ce953c (
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
|
using System;
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());
}
}
}
|