application.js 197 B

12345
  1. // Wait till the browser is ready to render the game (avoids glitches)
  2. window.requestAnimationFrame(function () {
  3. new GameManager(4, KeyboardInputManager, HTMLActuator, LocalStorageManager);
  4. });