TiledMapper.Tile.DropTile C# (CSharp) Méthode

DropTile() public méthode

public DropTile ( int dir ) : Tile
dir int
Résultat Tile
        public Tile DropTile(int dir)
        {
            this.neighbours[dir] = null;
            return this;
        }