예제 #1
0
        static void Main(string[] args)
        {
            Game Game = new Game(  );

            Game.Playing = true;
            while (Game.Playing)
            {
                Console.WriteLine("Please enter the name of your new Hero: ");
                string Name = Console.ReadLine();

                Hero Hero = new Hero();
                Hero.Name = Name;

                Console.WriteLine("Your name is: " + Hero.Name);
                Console.WriteLine("What would you like to do: \n"
                                  + "\t 1.) Go into town\n"
                                  + "\t 2.) Go into the forest\n");
                switch (Console.ReadLine())
                {
                case "1":
                    Game.goToTown("Belmont");
                    break;

                default:
                    Console.WriteLine("Thank you for playing the game");
                    Game.Playing = false;
                    break;
                }
            }
        }
예제 #2
0
        static void Main(string[] args)
        {
            Game Game = new Game(  );
            Game.Playing = true;
            while (Game.Playing)
            {
                Console.WriteLine("Please enter the name of your new Hero: ");
                string Name = Console.ReadLine();

                Hero Hero = new Hero();
                Hero.Name = Name;

                Console.WriteLine("Your name is: "+Hero.Name);
                Console.WriteLine("What would you like to do: \n"
                                  +"\t 1.) Go into town\n"
                                  +"\t 2.) Go into the forest\n");
                switch (Console.ReadLine())
                {
                    case "1":
                        Game.goToTown( "Belmont" );
                        break;
                    default:
                        Console.WriteLine("Thank you for playing the game");
                        Game.Playing = false;
                        break;
                }
            }
        }