Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mamayaya1
GitHub Repository: mamayaya1/game
Path: blob/main/projects/9007199254740992/js/application.js
4626 views
1
var GM;
2
3
// Wait till the browser is ready to render the game (avoids glitches)
4
window.requestAnimationFrame(function () {
5
GM = new GameManager(8, KeyboardInputManager, HTMLActuator, LocalScoreManager);
6
});
7
8