aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/WinClassicForms/wmTemplate.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-03-27 13:32:59 -0600
committerAShifter <[email protected]>2017-03-27 13:32:59 -0600
commit5819bf69c300dfaefa427d701b3bef4a7397e0c9 (patch)
tree4ef2c5835f36e91c29aa493f9433628d879e5255 /TimeHACK.Main/WinClassicForms/wmTemplate.cs
parent9c2564364358c85eef94ea1ac600bf8190bf1b09 (diff)
parentb4025b4c6d675b1b86074fe9b4de89dc00ee9123 (diff)
downloadhistacom2-5819bf69c300dfaefa427d701b3bef4a7397e0c9.tar.gz
histacom2-5819bf69c300dfaefa427d701b3bef4a7397e0c9.tar.bz2
histacom2-5819bf69c300dfaefa427d701b3bef4a7397e0c9.zip
BURNED EVERYTHING
and cloned
Diffstat (limited to 'TimeHACK.Main/WinClassicForms/wmTemplate.cs')
-rw-r--r--TimeHACK.Main/WinClassicForms/wmTemplate.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/TimeHACK.Main/WinClassicForms/wmTemplate.cs b/TimeHACK.Main/WinClassicForms/wmTemplate.cs
new file mode 100644
index 0000000..a4913c5
--- /dev/null
+++ b/TimeHACK.Main/WinClassicForms/wmTemplate.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using TimeHACK.Engine;
+
+namespace TimeHACK.WinClassicForms
+{
+ public partial class wmTemplate : Form
+ {
+ public wmTemplate()
+ {
+ InitializeComponent();
+ }
+
+ private void wmTemplate_Load(object sender, EventArgs e)
+ {
+ WindowManager wm = new WindowManager();
+ TestApp ta = new TestApp();
+ wm.startWinClassic(ta, "idk", null);
+ }
+ }
+}