コード例 #1
0
ファイル: GameSession.cs プロジェクト: michengak/SpaceGame2
        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);
        }