Game
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

util.js 273B

12345678
  1. window.reqAnimFrame = window.requestAnimationFrame || (function(fn) {
  2. return setTimeout(fn, 1000 / 60) });
  3. window.cancelAnimFrame = window.cancelAnimationFrame || window.clearTimeout;
  4. function randInt(min, max) {
  5. return Math.floor(Math.random() * (max - min)) + min;
  6. }