mirror of
https://github.com/photonstorm/phaser
synced 2024-12-26 13:03:36 +00:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
|
var CopyFrom = function (source, dest)
|
||
|
{
|
||
|
return dest.setTo(source.x1, source.y1, source.x2, source.y2);
|
||
|
};
|
||
|
|
||
|
module.exports = CopyFrom;
|