Skip to content
Snippets Groups Projects
Commit 90ac48ea authored by muellerfa100445's avatar muellerfa100445
Browse files

Main Menu V1

parent 0bb6a8cd
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,38 @@ namespace Program
{
static void Main()
{
Console.WriteLine("Test");
Console.WriteLine("\n███╗ ███╗ █████╗ ███████╗████████╗███████╗██████╗ ███╗ ███╗██╗███╗ ██╗██████╗");
Console.WriteLine("████╗ ████║██╔══██╗██╔════╝╚══██╔══╝██╔════╝██╔══██╗████╗ ████║██║████╗ ██║██╔══██╗");
Console.WriteLine("██╔████╔██║███████║███████╗ ██║ █████╗ ██████╔╝██╔████╔██║██║██╔██╗ ██║██║ ██║");
Console.WriteLine("██║╚██╔╝██║██╔══██║╚════██║ ██║ ██╔══╝ ██╔══██╗██║╚██╔╝██║██║██║╚██╗██║██║ ██║");
Console.WriteLine("██║ ╚═╝ ██║██║ ██║███████║ ██║ ███████╗██║ ██║██║ ╚═╝ ██║██║██║ ╚████║██████╔╝");
Console.WriteLine("╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝╚═════╝");
Console.WriteLine("\nBitte wählen Sie aus:");
Console.WriteLine("[S]tart");
Console.WriteLine("[E]rklärung");
Console.WriteLine("[B]eenden");
bool checkMenu = false;
while (checkMenu == false)
{
switch (Console.ReadLine().ToLower())
{
case "s":
checkMenu = true;
Console.WriteLine("Spiel startet ...");
break;
case "e":
checkMenu = true;
Console.WriteLine("Erklärung wird ausgegeben ...");
break;
case "b":
Environment.Exit(0);
break;
default:
Console.WriteLine("Bitte wählen Sie eine gültige Option.");
break;
}
}
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment