aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Frontend/Window.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Frontend/Window.cs')
-rw-r--r--ShiftOS.Frontend/Window.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/ShiftOS.Frontend/Window.cs b/ShiftOS.Frontend/Window.cs
new file mode 100644
index 0000000..4fd08a5
--- /dev/null
+++ b/ShiftOS.Frontend/Window.cs
@@ -0,0 +1,32 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using ShiftOS.Engine;
+
+namespace ShiftOS.Frontend
+{
+ public abstract class Window : IShiftOSWindow
+ {
+ public void OnLoad()
+ {
+ throw new NotImplementedException();
+ }
+
+ public void OnSkinLoad()
+ {
+ throw new NotImplementedException();
+ }
+
+ public bool OnUnload()
+ {
+ throw new NotImplementedException();
+ }
+
+ public void OnUpgrade()
+ {
+ throw new NotImplementedException();
+ }
+ }
+}