aboutsummaryrefslogtreecommitdiff
path: root/config.wren
blob: a1b8cec40f25889a07aefb984e9977cf516353b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import "graphics" for Canvas
import "dome" for Window
class Config {
    construct new() {

    }

    static KeyboardConstants {
        return {
            "UP": "up",
            "DOWN": "down",
            "LEFT": "left",
            "RIGHT": "right",
            "PICK" : "c",
            "SELECT": "z",
            "ATTACK": "x",
            "QUIT": "escape"
        }
    }

    static setup() {
        Window.resize(800, 600)
        Canvas.resize(800, 600)
        Window.title = "REBIRTH"
    }

    // static KeyboardConstants() {
    //     return {
    //         "UP": "up",
    //         "DOWN": "down",
    //         "LEFT": "left",
    //         "RIGHT": "right",
    //         "PICK" : "c",
    //         "SELECT": "z",
    //         "ATTACK": "x",
    //         "QUIT": "esc"
    //     }
    // }
}