aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/Snakey.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-02-27 12:08:50 -0500
committerlempamo <[email protected]>2017-02-27 12:08:50 -0500
commit43364450a2215a92000d4fa62c11e30bf1a3d295 (patch)
tree85d198ec831a2cc97cbc469622cdadd309cedf60 /ShiftOS.WinForms/Applications/Snakey.cs
parent8ceef636cdaed24cb9a1a8196b6f287397923e83 (diff)
downloadshiftos_thereturn-43364450a2215a92000d4fa62c11e30bf1a3d295.tar.gz
shiftos_thereturn-43364450a2215a92000d4fa62c11e30bf1a3d295.tar.bz2
shiftos_thereturn-43364450a2215a92000d4fa62c11e30bf1a3d295.zip
Snakey basics
Diffstat (limited to 'ShiftOS.WinForms/Applications/Snakey.cs')
-rw-r--r--ShiftOS.WinForms/Applications/Snakey.cs45
1 files changed, 45 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/Snakey.cs b/ShiftOS.WinForms/Applications/Snakey.cs
new file mode 100644
index 0000000..0c704d5
--- /dev/null
+++ b/ShiftOS.WinForms/Applications/Snakey.cs
@@ -0,0 +1,45 @@
+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;
+using ShiftOS.Engine;
+
+namespace ShiftOS.WinForms.Applications
+{
+ [Launcher("Snakey", true, "al_snakey", "Games")]
+ [RequiresUpgrade("snakey")]
+ [WinOpen("snakey")]
+ [DefaultIcon("iconSnakey")]
+ public partial class Snakey : UserControl, IShiftOSWindow
+ {
+ public Snakey()
+ {
+ InitializeComponent();
+ }
+
+ public void OnLoad()
+ {
+ throw new NotImplementedException();
+ }
+
+ public void OnSkinLoad()
+ {
+ throw new NotImplementedException();
+ }
+
+ public bool OnUnload()
+ {
+ throw new NotImplementedException();
+ }
+
+ public void OnUpgrade()
+ {
+ throw new NotImplementedException();
+ }
+ }
+}