diff options
Diffstat (limited to 'TimeHACK.Main/Program.cs')
| -rw-r--r-- | TimeHACK.Main/Program.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/TimeHACK.Main/Program.cs b/TimeHACK.Main/Program.cs index 5c3d46d..1c66b45 100644 --- a/TimeHACK.Main/Program.cs +++ b/TimeHACK.Main/Program.cs @@ -13,6 +13,7 @@ namespace TimeHACK { internal static bool nightly = true; internal static string gameID; + internal static TitleScreen title = null; /// <summary> /// The main entry point for the application. @@ -43,7 +44,7 @@ namespace TimeHACK } Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new TitleScreen()); + Application.Run(title = new TitleScreen()); } } } |
