js13kgames2015-reverse/src/helpers.js

6 lines
116 B
JavaScript

class Helper {
static random_number(min, max) {
return Math.floor((Math.random() * max) + min);
}
}