Topographer.Renderer.GetBlock C# (CSharp) Метод

GetBlock() приватный статический Метод

private static GetBlock ( TAG_Compound sections, int x, int y, int z ) : byte
sections Minecraft.TAG_Compound
x int
y int
z int
Результат byte
        private static byte GetBlock(TAG_Compound[] sections, int x, int y, int z)
        {
            byte id, data;
            GetBlock(sections, x, y, z, out id, out data);
            return id;
        }

Same methods

Renderer::GetBlock ( TAG_Compound sections, int x, int y, int z, byte &id, byte &data ) : void