Terraria.World.Generation.Actions.SetTile.SetTile C# (CSharp) Method

SetTile() public method

public SetTile ( ushort type, bool setSelfFrames = false, bool setNeighborFrames = true ) : Microsoft.Xna.Framework
type ushort
setSelfFrames bool
setNeighborFrames bool
return Microsoft.Xna.Framework
            public SetTile(ushort type, bool setSelfFrames = false, bool setNeighborFrames = true)
            {
                this._type = type;
                this._doFraming = setSelfFrames;
                this._doNeighborFraming = setNeighborFrames;
            }
Actions.SetTile