Created
November 28, 2023 14:07
-
-
Save felipebastosweb/4ffaa0789bbee90407988d247e0f9778 to your computer and use it in GitHub Desktop.
Arquivo main.js inicial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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