Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mamayaya1
GitHub Repository: mamayaya1/game
Path: blob/main/projects/cupcake2048/js/application.js
4626 views
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
});
5
6