aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/WindowManager.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-03-18 15:26:56 -0600
committerAShifter <[email protected]>2017-03-18 15:26:56 -0600
commit7fc231784e3b8e705581765932389fdc75f24d93 (patch)
treeee1dbdedefe6cf6cf0cfe40be0c4c30f254479c9 /TimeHACK.Engine/WindowManager.cs
parent81d083cfbc7b105b992c407936949c201db5a357 (diff)
downloadhistacom2-7fc231784e3b8e705581765932389fdc75f24d93.tar.gz
histacom2-7fc231784e3b8e705581765932389fdc75f24d93.tar.bz2
histacom2-7fc231784e3b8e705581765932389fdc75f24d93.zip
Continuing work on the Engine
The WindowManager WinClassic is almost done!
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;
}
}
}