add 2048 game

This commit is contained in:
hamid zarghami
2025-12-09 10:20:15 +03:30
parent 803f104307
commit 8119203506
15 changed files with 1928 additions and 3 deletions
+4
View File
@@ -0,0 +1,4 @@
// Wait till the browser is ready to render the game (avoids glitches)
window.requestAnimationFrame(function () {
new GameManager(4, KeyboardInputManager, HTMLActuator, LocalStorageManager);
});