diff options
| author | Richie Moch <[email protected]> | 2018-12-23 23:41:07 -0600 |
|---|---|---|
| committer | Richie Moch <[email protected]> | 2018-12-23 23:41:07 -0600 |
| commit | 87546f325f6fb24dcc5ab34851cc06b074d79984 (patch) | |
| tree | 4905888bc331bc9bb9d5ca060a4a5811210213b2 /ShiftOS.Main/Desktop.cs | |
| parent | 8f34b3a0c7118abb81526a3dc5f435ba8f8485f8 (diff) | |
| download | shiftos-rewind-87546f325f6fb24dcc5ab34851cc06b074d79984.tar.gz shiftos-rewind-87546f325f6fb24dcc5ab34851cc06b074d79984.tar.bz2 shiftos-rewind-87546f325f6fb24dcc5ab34851cc06b074d79984.zip | |
Wrote Breakout, and only with minimal bugs this time!
Diffstat (limited to 'ShiftOS.Main/Desktop.cs')
| -rw-r--r-- | ShiftOS.Main/Desktop.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.Main/Desktop.cs b/ShiftOS.Main/Desktop.cs index 41e0873..fae9d8d 100644 --- a/ShiftOS.Main/Desktop.cs +++ b/ShiftOS.Main/Desktop.cs @@ -42,9 +42,9 @@ namespace ShiftOS.Main ShiftWM.Init(new Apps.TextPad(), "TextPad", Properties.Resources.iconTextPad); } - private void pongToolStripMenuItem_Click(object sender, EventArgs e) + private void breakOutToolStripMenuItem_Click(object sender, EventArgs e) { - ShiftWM.Init(new Apps.Pong(), "Pong", null); + ShiftWM.Init(new Apps.Breakout(), "Breakout", null); } } |
