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.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/TimeHACK.Engine/WindowManager.cs b/TimeHACK.Engine/WindowManager.cs
index 534f2f3..540dddd 100644
--- a/TimeHACK.Engine/WindowManager.cs
+++ b/TimeHACK.Engine/WindowManager.cs
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
+using TimeHACK.Engine.Template;
namespace TimeHACK.Engine
{
@@ -10,7 +11,10 @@ namespace TimeHACK.Engine
{
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;
}
}
}