MCSharp.World.Map.SetTile C# (CSharp) Méthode

SetTile() public méthode

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