mirror of
https://github.com/photonstorm/phaser
synced 2024-12-22 11:03:23 +00:00
9 lines
118 B
JavaScript
9 lines
118 B
JavaScript
var Offset = function (rect, x, y)
|
|
{
|
|
rect.x += x;
|
|
rect.y += y;
|
|
|
|
return rect;
|
|
};
|
|
|
|
module.exports = Offset;
|