aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK/ExtraEntry.cs
blob: d70958cd1a08b7bd09c416569bfe14ab5b1c0078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Windows.Forms;

namespace TimeHACK
{
    static class ExtraEntry
    {
        internal static string gameID;
        
        // This is an extra file for testing out new Forms / apps. Do NOT edit Program.cs!
        [STAThread]
        static void Main()
        {
            // Set the GameID
            gameID = "WARNING - ExtraEntry Enabled! Please disable this BEFORE commiting.";
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new WinClassicIE4());
        }
    }
}