Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Incognito-old
Path: blob/main/static/src/gs/public/flappy-2048/js/application.js
1333 views
1
// Wait till the browser is ready to render the game (avoids glitches)
2
window.requestAnimationFrame(function () {
3
new GameManager(4, KeyboardInputManager, HTMLActuator, LocalScoreManager);
4
});
5
6