phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
24 lines (21 loc) • 587 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}
*/
/**
* [description]
*
* @function Phaser.Geom.Point.Equals
* @since 3.0.0
*
* @param {Phaser.Geom.Point} point - [description]
* @param {Phaser.Geom.Point} toCompare - [description]
*
* @return {boolean} [description]
*/
var Equals = function (point, toCompare)
{
return (point.x === toCompare.x && point.y === toCompare.y);
};
module.exports = Equals;