js-browser-tile-game/js/helpers.js
Aaron Yarborough 4b4e124c57 Initial commit
2019-12-02 10:05:48 +00:00

10 lines
No EOL
143 B
JavaScript

function isKeyDown(keycode) {
if (keysdown[keycode] == true) {
return true;
}
return false;
}
function echo(msg) {
console.debug(msg);
}