/** * Tile Pixel */ export declare class Pixel { /** * X pixel */ private x; /** * Y pixel */ private y; /** * Constructor * * @param x * x pixel * @param y * y pixel */ constructor(x: number, y: number); /** * Get the x pixel * * @return x pixel */ getX(): number; /** * Set the x pixel * * @param x * x pixel */ setX(x: number): void; /** * Get the y pixel * * @return y pixel */ getY(): number; /** * Set the y pixel * * @param y * y pixel */ setY(y: number): void; } //# sourceMappingURL=Pixel.d.ts.map