using System;
public class Program
{
/*
Goal: Write a text maze program, in which the user can type in commands to move through the maze. When the user reaches the end, the program tells the user that they won.
What do we need to know to create this maze?
* Display the maze after every move - Display
* Store the maze - Variables
* Store the current location of the player - Variables
* Take in user input - User Input
* Game Logic, for example showing an error if a user hits a wall - Operators
* Loop the entire game - Loops
Notes:
* Need to overwrite the map with the character's position (Use a 0 for the player, for example)
Things to Consider for the future:
* How could you change the map, or provide multiple maps for the user to choose from at the start of the game?
* How could we make a "First Person Mode", in which the user only sees what's around them?
*/
public static void Main()
Console.WriteLine("XX#X");
Console.WriteLine("S##X");
Console.WriteLine("E##X");
}