arcade-physics
Version:
Use Arcade Physics without Phaser.
18 lines • 514 B
TypeScript
export default IsEven;
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Check if a given value is an even number.
*
* @function Phaser.Math.IsEven
* @since 3.0.0
*
* @param {number} value - The number to perform the check with.
*
* @return {boolean} Whether the number is even or not.
*/
declare function IsEven(value: number): boolean;
//# sourceMappingURL=IsEven.d.ts.map