diff options
| author | jtsshieh <[email protected]> | 2017-08-02 22:08:21 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-02 22:08:21 -0400 |
| commit | 2029bbc59969fd4554022bc23dd6a88a2adc6d19 (patch) | |
| tree | b5a5281108d8f0983fdf3b3446a4911059fd3497 /TimeHACK.Main/TitleScreen.cs | |
| parent | d2286b7d68db20fae6bdb58078853379faf5ac08 (diff) | |
| parent | a3b48880bf4136cb8033305fde052727e24ab8b1 (diff) | |
| download | histacom2-2029bbc59969fd4554022bc23dd6a88a2adc6d19.tar.gz histacom2-2029bbc59969fd4554022bc23dd6a88a2adc6d19.tar.bz2 histacom2-2029bbc59969fd4554022bc23dd6a88a2adc6d19.zip | |
Merge branch 'master' into master
Diffstat (limited to 'TimeHACK.Main/TitleScreen.cs')
| -rw-r--r-- | TimeHACK.Main/TitleScreen.cs | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/TimeHACK.Main/TitleScreen.cs b/TimeHACK.Main/TitleScreen.cs index 6ee2ef1..90cd0af 100644 --- a/TimeHACK.Main/TitleScreen.cs +++ b/TimeHACK.Main/TitleScreen.cs @@ -56,10 +56,7 @@ namespace TimeHACK public void StartGame() { //TODO: You may want to handle story stuff to decide what OS to boot here. - if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337) - { - leet(); - } + if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337) leet(); else { // Time to decide which OS to start up! @@ -107,16 +104,6 @@ namespace TimeHACK } } - void closeButton(object sender, MouseEventArgs e) - { - Close(); - } - - private void closebutton_Click(object sender, EventArgs e) - { - Close(); - } - private void VM_WidthHeight_KeyPress(object sender, KeyPressEventArgs e) { if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && |
