Files
monkeygg2.github.io/games/2048/js/application.js
T
2023-08-25 13:31:04 +05:30

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);
});