* Code Refactoring

* Bug Fixes in Map rendering
This commit is contained in:
Indrajith K L
2021-08-02 13:23:30 +05:30
parent b73889da9f
commit 2ff207a1d3
6 changed files with 129 additions and 51 deletions

11
controls.wren Normal file
View File

@@ -0,0 +1,11 @@
import "input" for Keyboard
class Controls {
construct new() {
}
static detect(keyCode) {
return Keyboard.isKeyDown(keyCode)
}
}