a munch adventure
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

24 行
253 B

  1. "use strict"
  2. let audioContext;
  3. let state = {
  4. player: {
  5. items: {
  6. keys: [
  7. "Locked Room"
  8. ]
  9. }
  10. }
  11. }
  12. // setup the game
  13. function init() {
  14. initAudio();
  15. moveToRoom("Home", state);
  16. }
  17. window.addEventListener("load", init);