Files
neon443.github.io/games/2048/js/application.js
2024-09-28 10:26:25 +01:00

5 lines
197 B
JavaScript

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