aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/Program.cs
blob: 96aedaa246fdd5023648a1990d7c4195ff1b37ed (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 = "1.0.44";
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new TitleScreen());
        }
    }
}