phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
25 lines (21 loc) • 593 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var Rectangle = require('./Rectangle');
/**
* [description]
*
* @function Phaser.Geom.Rectangle.Clone
* @since 3.0.0
*
* @param {Phaser.Geom.Rectangle} source - [description]
*
* @return {Phaser.Geom.Rectangle} [description]
*/
var Clone = function (source)
{
return new Rectangle(source.x, source.y, source.width, source.height);
};
module.exports = Clone;