This commit is contained in:
dylan
2023-05-05 16:02:23 -07:00
parent f2b5978cae
commit 6c9710d4d9
5 changed files with 177 additions and 56 deletions

View File

@ -8,6 +8,7 @@ import { refreshKeyboard, keyPressed, K } from "./keyboard.ts";
import { repl, resetRepl } from "./repl.ts";
import { addToContext } from "./runcode.ts";
import { editmode } from "./editmode.ts";
import { refreshMouse } from "./mouse.ts";
// deno-lint-ignore no-explicit-any
let game: any = null;
@ -56,4 +57,5 @@ await mainloop((_t) => {
}
}
refreshKeyboard();
refreshMouse();
});