mirror of
https://github.com/photonstorm/phaser
synced 2025-01-26 11:55:13 +00:00
10 lines
126 B
JavaScript
10 lines
126 B
JavaScript
|
var Offset = function (circle, x, y)
|
||
|
{
|
||
|
circle.x += x;
|
||
|
circle.y += y;
|
||
|
|
||
|
return circle;
|
||
|
};
|
||
|
|
||
|
module.exports = Offset;
|