MCSharp.World.Map.SetTile C# (CSharp) Метод

SetTile() публичный Метод

public SetTile ( ushort x, ushort y, ushort z, byte type ) : void
x ushort
y ushort
z ushort
type byte
Результат void
        public void SetTile(ushort x, ushort y, ushort z, byte type)
        {
            blocks[x + width * z + width * height * y] = type;
        }