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

IntOffset() public méthode

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