src/assets/js/games/2048/application.js

Summary

Maintainability
A
0 mins
Test Coverage
// Wait till the browser is ready to render the game (avoids glitches)
window.requestAnimationFrame(function () {
  new GameManager(4, KeyboardInputManager, HTMLActuator, LocalStorageManager);
});