Beispiel #1
0
        public Game InitializeGame()
        {
            Game game = new Game();

            CDisp.ViewClear();
            CDisp.DisplayToUser(N.WelcomeScreen());
            game.Difficulty      = GameDifficultySet();
            game.Player          = PlayerCreateNew(game.Difficulty);
            game.World           = new Map.World(game.Difficulty);
            game.Player.location = game.World.Towns[0];
            CDisp.DisplayToUser(N.JourneyBegins(game.Player.Name));
            return(game);
        }
Beispiel #2
0
 public void ShowAbout()
 {
     CDisp.DisplayToUser(N.GameAbout());
 }