aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK/ExtraEntry.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-03-17 17:31:41 -0600
committerAShifter <[email protected]>2017-03-17 17:31:41 -0600
commit0c00b5f33c37427228c53794732d513adc862261 (patch)
treeb7d2682a04ec002bc5e800d28e8be1791f695777 /TimeHACK/ExtraEntry.cs
parent2ef1e277a54e698f0d96cc87ab5523c2471d0ef4 (diff)
downloadhistacom2-0c00b5f33c37427228c53794732d513adc862261.tar.gz
histacom2-0c00b5f33c37427228c53794732d513adc862261.tar.bz2
histacom2-0c00b5f33c37427228c53794732d513adc862261.zip
HUGE OVERHAUL
Added TimeHACK.Engine - Starting a new engine system to render Operating System borders Made more changes ( ͡° ͜ʖ ͡°)
Diffstat (limited to 'TimeHACK/ExtraEntry.cs')
-rw-r--r--TimeHACK/ExtraEntry.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/TimeHACK/ExtraEntry.cs b/TimeHACK/ExtraEntry.cs
deleted file mode 100644
index d70958c..0000000
--- a/TimeHACK/ExtraEntry.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-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());
- }
- }
-}