mirror of
https://github.com/photonstorm/phaser
synced 2025-01-08 03:08:50 +00:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
|
var Equals = function (ellipse, toCompare)
|
||
|
{
|
||
|
return (
|
||
|
ellipse.x === toCompare.x &&
|
||
|
ellipse.y === toCompare.y &&
|
||
|
ellipse.width === toCompare.width &&
|
||
|
ellipse.height === toCompare.height
|
||
|
);
|
||
|
};
|
||
|
|
||
|
module.exports = Equals;
|