aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/WindowManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'TimeHACK.Engine/WindowManager.cs')
-rw-r--r--TimeHACK.Engine/WindowManager.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/TimeHACK.Engine/WindowManager.cs b/TimeHACK.Engine/WindowManager.cs
new file mode 100644
index 0000000..540dddd
--- /dev/null
+++ b/TimeHACK.Engine/WindowManager.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using TimeHACK.Engine.Template;
+
+namespace TimeHACK.Engine
+{
+ class WindowManager
+ {
+ private void startWinClassic(String title, int width, int height)
+ {
+ WinClassic app = new WinClassic();
+ app.Title.Text = title;
+ app.Width = width + 8;
+ app.Height = height + 26;
+ }
+ }
+}