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 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + 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(); + } + } +} diff --git a/ShiftOS.WinForms/Resources/Shiftorium.txt b/ShiftOS.WinForms/Resources/Shiftorium.txt index 5b3ebe2..fde7f36 100644 --- a/ShiftOS.WinForms/Resources/Shiftorium.txt +++ b/ShiftOS.WinForms/Resources/Shiftorium.txt @@ -794,4 +794,19 @@ Dependencies: "shiftsweeper_medium", Description: "Is ShiftSweeper still too easy for you? Buy the Hard difficulty and you can try to find 99 mines! It may be extremely difficult, but the reward is massive!" }, + + // SNAKEY + + { + Name: "Snakey", + Cost: 1100, + Dependencies: "shiftsweeper", + Description: "You want more games? Ok then! You can get Snakey, a game that people used to play on 'dumb phones', now coming to your 'smart' ShiftOS system for just 1100 codepoints!" + }, + { + Name: "AL Snakey", + Cost: 200, + Dependencies: "app_launcher;snakey", + Description: "Play Snakey quickly with this dandy applauncher!" + }, ] \ No newline at end of file diff --git a/ShiftOS.WinForms/Resources/SnakeyBG.png b/ShiftOS.WinForms/Resources/SnakeyBG.png new file mode 100644 index 0000000..f2188c0 Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyBG.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyBody.png b/ShiftOS.WinForms/Resources/SnakeyBody.png new file mode 100644 index 0000000..03e30f6 Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyBody.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyHeadD.png b/ShiftOS.WinForms/Resources/SnakeyHeadD.png new file mode 100644 index 0000000..2adcafe Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyHeadD.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyHeadL.png b/ShiftOS.WinForms/Resources/SnakeyHeadL.png new file mode 100644 index 0000000..0934c44 Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyHeadL.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyHeadR.png b/ShiftOS.WinForms/Resources/SnakeyHeadR.png new file mode 100644 index 0000000..98e0132 Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyHeadR.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyHeadU.png b/ShiftOS.WinForms/Resources/SnakeyHeadU.png new file mode 100644 index 0000000..84fd676 Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyHeadU.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyTailD.png b/ShiftOS.WinForms/Resources/SnakeyTailD.png new file mode 100644 index 0000000..a20915d Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyTailD.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyTailL.png b/ShiftOS.WinForms/Resources/SnakeyTailL.png new file mode 100644 index 0000000..6a8e386 Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyTailL.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyTailR.png b/ShiftOS.WinForms/Resources/SnakeyTailR.png new file mode 100644 index 0000000..7394f15 Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyTailR.png differ diff --git a/ShiftOS.WinForms/Resources/SnakeyTailU.png b/ShiftOS.WinForms/Resources/SnakeyTailU.png new file mode 100644 index 0000000..6288a63 Binary files /dev/null and b/ShiftOS.WinForms/Resources/SnakeyTailU.png differ