Files
rebirth-wren/controls.wren
Indrajith K L 2ff207a1d3 * Code Refactoring
* Bug Fixes in Map rendering
2021-08-02 13:23:30 +05:30

11 lines
159 B
Plaintext

import "input" for Keyboard
class Controls {
construct new() {
}
static detect(keyCode) {
return Keyboard.isKeyDown(keyCode)
}
}