aboutsummaryrefslogtreecommitdiff
path: root/src/paperflight/static/items.js
blob: 11c204767fd5e61502ff9d1ca7a9ac3670eb38ad (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
40
41
42
function vent(x, y, width, height){
    return {
        draw: drawVent,
        update: updateVent,
        x, y, width, height
    }
}
function coin(x, y, radius=10){
    return {
        draw: drawCoin,
        update: updateCoin,
        x, y, radius
    }
}
function block(x, y, width, height){
    return {
        draw: drawBlock,
        update: updateBlock,
        x, y, width, height
    }
}
function ramp(x, y, width, height, slope){
    return {
        draw: drawRamp, 
        update: updateRamp, 
        x, y, width, height, slope
    }
}
function getSwitch(x, y, width, height, stateCount){
    return {
        draw: drawSwitch,
        update: updateSwitch,
        x, y, width, height, stateCount
    }
}
function switchRect(x, y, width, height, state){
    return{
        draw: drawSwitchRect,
        update: updateSwitchRect,
        x, y, width, height, state
    }
}