diff --git a/ShiftOS.WinForms/Applications/ShiftSweeper.cs b/ShiftOS.WinForms/Applications/ShiftSweeper.cs index 6c64d30..0b05bdf 100644 --- a/ShiftOS.WinForms/Applications/ShiftSweeper.cs +++ b/ShiftOS.WinForms/Applications/ShiftSweeper.cs @@ -41,7 +41,6 @@ namespace ShiftOS.WinForms.Applications [DefaultIcon("iconShiftSweeper")] public partial class ShiftSweeper : UserControl, IShiftOSWindow { - private bool gameplayed = false; private bool flagtime = false; private int mineCount = 0; private int origminecount; diff --git a/ShiftOS.WinForms/Applications/Snakey.cs b/ShiftOS.WinForms/Applications/Snakey.cs index c3bd5cf..c6f61e9 100644 --- a/ShiftOS.WinForms/Applications/Snakey.cs +++ b/ShiftOS.WinForms/Applications/Snakey.cs @@ -17,7 +17,7 @@ namespace ShiftOS.WinForms.Applications [DefaultIcon("iconSnakey")] public partial class Snakey : UserControl, IShiftOSWindow { - private int[,] snakemap; // 0 - Nothing, 1 - Body, 2 - Head, 3 - Tail + private int[,] snakemap = null; // 0 - Nothing, 1 - Body, 2 - Head, 3 - Tail private int snakedirection = 0; // 0 - Left, 1 - Down, 2 - Right, 3 - Up private Timer snakeupdater = new Timer(); private bool extending = false; diff --git a/ShiftOS.WinForms/ShiftOS.WinForms.csproj b/ShiftOS.WinForms/ShiftOS.WinForms.csproj index e061f82..480e11c 100644 --- a/ShiftOS.WinForms/ShiftOS.WinForms.csproj +++ b/ShiftOS.WinForms/ShiftOS.WinForms.csproj @@ -196,6 +196,12 @@ Skin Loader.cs + + UserControl + + + Snakey.cs + UserControl @@ -342,6 +348,9 @@ Skin Loader.cs + + Snakey.cs + TextPad.cs @@ -553,6 +562,16 @@ + + + + + + + + + +