mirror of
https://github.com/photonstorm/phaser
synced 2024-12-17 16:43:30 +00:00
7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
|
var Between = function (min, max)
|
||
|
{
|
||
|
return Math.floor(Math.random() * (max - min + 1) + min);
|
||
|
};
|
||
|
|
||
|
module.exports = Between;
|