diff options
| author | lempamo <[email protected]> | 2017-02-26 11:52:38 -0500 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-02-26 11:52:38 -0500 |
| commit | 281382f120dcaba79b082d010771e193d7a6e9cc (patch) | |
| tree | eec54149907a2baf73ac4430a1526cf3b3ed213e /ShiftOS.WinForms/Applications/ShiftSweeper.cs | |
| parent | e816cabaf72e3e827f00694e5ef21e30a67293c2 (diff) | |
| download | shiftos_thereturn-281382f120dcaba79b082d010771e193d7a6e9cc.tar.gz shiftos_thereturn-281382f120dcaba79b082d010771e193d7a6e9cc.tar.bz2 shiftos_thereturn-281382f120dcaba79b082d010771e193d7a6e9cc.zip | |
ShiftSweeper basics
Diffstat (limited to 'ShiftOS.WinForms/Applications/ShiftSweeper.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/ShiftSweeper.cs | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/ShiftSweeper.cs b/ShiftOS.WinForms/Applications/ShiftSweeper.cs new file mode 100644 index 0000000..c61f3eb --- /dev/null +++ b/ShiftOS.WinForms/Applications/ShiftSweeper.cs @@ -0,0 +1,41 @@ +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("ShiftSweeper", false, null, "Games")] + [RequiresUpgrade("shiftsweeper")] + [WinOpen("shiftsweeper")] + [DefaultIcon("iconShiftSweeper")] + public partial class ShiftSweeper : UserControl, IShiftOSWindow + { + private bool gameplayed = false; + + public ShiftSweeper() + { + InitializeComponent(); + } + + public void OnLoad() + { + + } + + public void OnSkinLoad() { } + + public bool OnUnload() { return true; } + + public void OnUpgrade() + { + + } + } +} |
