aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival-CS/MainForms/ShiftOSMenu.cs
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-07 10:34:00 +0700
committerEverythingWindows <[email protected]>2022-11-07 10:34:00 +0700
commit6e912644d2d89dfb93d9c5ae3735cceafc0a3955 (patch)
tree5b3ac659408cea0d3a0a5d46a5f8a5f1b7559646 /ShiftOS-TheRevival-CS/MainForms/ShiftOSMenu.cs
parent5cf25f1409d40f7de6b13baf8b76751ae7b664ed (diff)
downloadshiftos-therevival-old-csharp.tar.gz
shiftos-therevival-old-csharp.tar.bz2
shiftos-therevival-old-csharp.zip
Main Menu is now workingcsharp
Diffstat (limited to 'ShiftOS-TheRevival-CS/MainForms/ShiftOSMenu.cs')
-rw-r--r--ShiftOS-TheRevival-CS/MainForms/ShiftOSMenu.cs62
1 files changed, 62 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival-CS/MainForms/ShiftOSMenu.cs b/ShiftOS-TheRevival-CS/MainForms/ShiftOSMenu.cs
new file mode 100644
index 0000000..661d799
--- /dev/null
+++ b/ShiftOS-TheRevival-CS/MainForms/ShiftOSMenu.cs
@@ -0,0 +1,62 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace ShiftOS_TheRevival_CS
+{
+ public partial class ShiftOSMenu : Form
+ {
+ public ShiftOSMenu()
+ {
+ InitializeComponent();
+ }
+
+ private void btn_Exit_Click(object sender, EventArgs e)
+ {
+ Close();
+ }
+
+ private void btn_StoryMode_Click(object sender, EventArgs e)
+ {
+ switch (btn_StoryMode.Text) {
+ case "Story Mode":
+ btn_StoryMode.Text = "New Game";
+ btn_FreeRoam.Text = "Continue";
+ btn_Aboot.Text = "Back";
+ btn_Exit.Visible = false;
+ break;
+ case "New Game":
+ break;
+ }
+ }
+
+ private void btn_FreeRoam_Click(object sender, EventArgs e)
+ {
+ switch (btn_FreeRoam.Text)
+ {
+ case "Free Roam Mode":
+ break;
+ case "Continue":
+ break;
+ }
+ }
+
+ private void btn_Aboot_Click(object sender, EventArgs e)
+ {
+ switch (btn_Aboot.Text) {
+ case "Back":
+ btn_StoryMode.Text = "Story Mode";
+ btn_FreeRoam.Text = "Free Roam Mode";
+ btn_Aboot.Text = "About";
+ btn_Exit.Visible = true;
+ break;
+ }
+ }
+ }
+}