phaser/src/math/Between.js
2018-02-12 16:01:21 +00:00

23 lines
528 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.Math.Between
* @since 3.0.0
*
* @param {integer} min - [description]
* @param {integer} max - [description]
*
* @return {integer} [description]
*/
var Between = function (min, max)
{
return Math.floor(Math.random() * (max - min + 1) + min);
};
module.exports = Between;