Skip to content

Instantly share code, notes, and snippets.

@felipebastosweb
Created November 28, 2023 14:07
Show Gist options
  • Save felipebastosweb/4ffaa0789bbee90407988d247e0f9778 to your computer and use it in GitHub Desktop.
Save felipebastosweb/4ffaa0789bbee90407988d247e0f9778 to your computer and use it in GitHub Desktop.
Arquivo main.js inicial
import { Game } from "./gdd.js";
import { LandingLevel, HomeLevel } from "./levels.js";
const app = new Game();
app.levelList = {
"/": LandingLevel,
"/home": HomeLevel,
};
app.run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment