Game
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }