a munch adventure
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

16 líneas
187 B

  1. "use strict"
  2. let audioBaseUrl = "http://localhost:8000/media/audio/";
  3. let audioContext;
  4. // setup the game
  5. function init() {
  6. initAudio();
  7. }
  8. window.addEventListener("load", init);