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

IntOffset() public method

public IntOffset ( int pos, int x, int y, int z ) : int
pos int
x int
y int
z int
return int
        public int IntOffset(int pos, int x, int y, int z)
        {
            return pos + x + z * width + y * width * height;
        }