Example #1
0
        public GameWorld(string mapPath)
        {
			Map = new TileMap(mapPath);
        }
Example #2
0
		public DrawableTileMap(TileMap map, string tileset)
        {
			Map = map;
			TileSetName = tileset;
        }