From 7fc231784e3b8e705581765932389fdc75f24d93 Mon Sep 17 00:00:00 2001 From: AShifter Date: Sat, 18 Mar 2017 15:26:56 -0600 Subject: Continuing work on the Engine The WindowManager WinClassic is almost done! --- TimeHACK.Engine/WindowManager.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'TimeHACK.Engine/WindowManager.cs') 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; } } } -- cgit v1.2.3