mirror of
https://github.com/photonstorm/phaser
synced 2025-01-07 02:38:53 +00:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
|
var CopyFrom = function (source, dest)
|
||
|
{
|
||
|
return dest.setTo(source.x, source.y, source.width, source.height);
|
||
|
};
|
||
|
|
||
|
module.exports = CopyFrom;
|