Newer
Older
pixi.js / src / core / textures / TextureUvs.js
@Chad Engler Chad Engler on 12 Jan 2015 195 bytes regex replace braces to newline
function TextureUvs()
{
    this.x0 = 0;
    this.y0 = 0;

    this.x1 = 0;
    this.y1 = 0;

    this.x2 = 0;
    this.y2 = 0;

    this.x3 = 0;
    this.y3 = 0;
}

module.exports = TextureUvs;