From 9107510c4985ceb781640163bbb82ab6de2fa35e Mon Sep 17 00:00:00 2001 From: AShifter Date: Sun, 24 Sep 2017 12:32:50 -0600 Subject: Add proper WM and Remove old source Added a proper, working WM. I also got rid of the old source as we could just make a new repo for that. --- ShiftOS.Engine/WindowManager/ShiftWindow.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ShiftOS.Engine/WindowManager/ShiftWindow.cs (limited to 'ShiftOS.Engine/WindowManager/ShiftWindow.cs') diff --git a/ShiftOS.Engine/WindowManager/ShiftWindow.cs b/ShiftOS.Engine/WindowManager/ShiftWindow.cs new file mode 100644 index 0000000..6f9c90d --- /dev/null +++ b/ShiftOS.Engine/WindowManager/ShiftWindow.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ShiftOS.Engine.WindowManager +{ + public partial class ShiftWindow : Form + { + public ShiftWindow() + { + InitializeComponent(); + } + } +} -- cgit v1.2.3