From f08998364e88f5d3284c4ecba3d831ccfa4e282f Mon Sep 17 00:00:00 2001 From: FloppyDiskDrive Date: Sat, 23 Sep 2017 17:28:13 -0500 Subject: Added the Engine (yay!) --- ShiftOS.Engine/Templates/WindowTemplate.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ShiftOS.Engine/Templates/WindowTemplate.cs (limited to 'ShiftOS.Engine/Templates/WindowTemplate.cs') diff --git a/ShiftOS.Engine/Templates/WindowTemplate.cs b/ShiftOS.Engine/Templates/WindowTemplate.cs new file mode 100644 index 0000000..6af48b0 --- /dev/null +++ b/ShiftOS.Engine/Templates/WindowTemplate.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ShiftOS.Engine.Templates +{ + public partial class WindowTemplate : Form + { + public WindowTemplate() + { + InitializeComponent(); + } + } +} -- cgit v1.2.3