aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications
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
parent8ceef636cdaed24cb9a1a8196b6f287397923e83 (diff)
downloadshiftos_thereturn-43364450a2215a92000d4fa62c11e30bf1a3d295.tar.gz
shiftos_thereturn-43364450a2215a92000d4fa62c11e30bf1a3d295.tar.bz2
shiftos_thereturn-43364450a2215a92000d4fa62c11e30bf1a3d295.zip
Snakey basics
Diffstat (limited to 'ShiftOS.WinForms/Applications')
-rw-r--r--ShiftOS.WinForms/Applications/Snakey.Designer.cs37
-rw-r--r--ShiftOS.WinForms/Applications/Snakey.cs45
2 files changed, 82 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/Snakey.Designer.cs b/ShiftOS.WinForms/Applications/Snakey.Designer.cs
new file mode 100644
index 0000000..22780c4
--- /dev/null
+++ b/ShiftOS.WinForms/Applications/Snakey.Designer.cs
@@ -0,0 +1,37 @@
+namespace ShiftOS.WinForms.Applications
+{
+ partial class Snakey
+ {
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Component Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ }
+
+ #endregion
+ }
+}
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();
+ }
+ }
+}