コード例 #1
0
        /// <summary>
        /// Creates the GameMap
        /// </summary>
        /// <returns>Returns the new GameMap</returns>
        public GameMap CreateGameMap()
        {
            map = GameMap.GetInstance();
            map.Initialize(difficulty, mapID, gameType, startingResources, startingLives, mapTiles, strat);

            return map;
        }