TiledMapper.Tile.DropTile C# (CSharp) Method

DropTile() public method

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