class Loader { constructor(app) { console.log("Init Loader"); this.app = app; } loadGame() { return new Game(this.app); } }