7 lines
100 B
JavaScript
7 lines
100 B
JavaScript
module.exports = Transform;
|
|
|
|
function Transform() {
|
|
this.x = 0;
|
|
this.y = 0;
|
|
this.scale = 1;
|
|
}
|