aboutsummaryrefslogtreecommitdiff
path: root/controls.wren
blob: 3804020f086022b4b1049c48e027bae8175b2bb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
import "input" for Keyboard

class Controls {
    construct new() {

    }

    static detect(keyCode) {    
        return Keyboard.isKeyDown(keyCode)
    }
}