Exemplo n.º 1
0
        public GameSession()
        {
            CurrentPlayer         = new Player();
            CurrentPlayer.Name    = "Noah";
            CurrentPlayer.Level   = "Beginner";
            CurrentPlayer.Fortune = "10000";



            WorldFactory factory = new WorldFactory();

            CurrentWorld = factory.CreatedWord();

            CurrentLocation = new Location();


            CurrentLocation = CurrentWorld.locationAt(0, 0);
        }