From 43364450a2215a92000d4fa62c11e30bf1a3d295 Mon Sep 17 00:00:00 2001 From: lempamo Date: Mon, 27 Feb 2017 12:08:50 -0500 Subject: Snakey basics --- ShiftOS.WinForms/Applications/Snakey.cs | 45 +++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 ShiftOS.WinForms/Applications/Snakey.cs (limited to 'ShiftOS.WinForms/Applications/Snakey.cs') 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(); + } + } +} -- cgit v1.2.3