mirror of
https://github.com/YunoHost-Apps/243-game_ynh.git
synced 2024-09-03 18:06:00 +02:00
4 lines
195 B
JavaScript
4 lines
195 B
JavaScript
// Wait till the browser is ready to render the game (avoids glitches)
|
|
window.requestAnimationFrame(function () {
|
|
new GameManager(5, KeyboardInputManager, HTMLActuator, LocalScoreManager);
|
|
});
|