level.jsconst LEVELS = [ // liste des niveaux du jeu
// niveau 0 { map: ` # =========== `, },// niveau 1 { map: ` # =========== `, },// niveau 2 { map: ` # =========== `, },];
level.jslet CURRENT_LEVEL = 1
level.jsconfig :{ tileWidth: 64, tileHeight: 64, backgroundColor: "afe1ff", musicVolume: 1, },