MCSharp.World.Map.SetTile C# (CSharp) Method

SetTile() public method

public SetTile ( ushort x, ushort y, ushort z, byte type ) : void
x ushort
y ushort
z ushort
type byte
return void
        public void SetTile(ushort x, ushort y, ushort z, byte type)
        {
            blocks[x + width * z + width * height * y] = type;
        }