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