SetTileSetBox() public method

public SetTileSetBox ( TileSetBox box ) : void
box TileSetBox
return void
コード例 #1
0
ファイル: Area.cs プロジェクト: floAr/WarTornLands
        public void AddLowLayer(TileLayer layer)
        {
            layer.SetTileSetBox(this.TileSets);

            _lowTileLayers.Add(layer);
        }
コード例 #2
0
ファイル: Area.cs プロジェクト: floAr/WarTornLands
        public void AddHighLayer(TileLayer layer)
        {
            layer.SetTileSetBox(this.TileSets);

            _highTileLayers.Add(layer);
        }