TileCook.Coord.Coord C# (CSharp) Method

Coord() public method

public Coord ( int z, int x, int y, bool topOrigin = false ) : System
z int
x int
y int
topOrigin bool
return System
        public Coord(int z, int x, int y, bool topOrigin = false)
        {
            this._z = z;
            this._x = x;
            this._y = y;
            this._topOrigin = topOrigin;
        }
Coord