aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/world.lua
blob: 5be4441e54bc1707f8b026a78b812d0d785355f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
WINDOW_WIDTH  = 640
WINDOW_HEIGHT = 480

entities = {
    [0] = {
        point = { x = 0, y = WINDOW_HEIGHT - 200 },
        texture = "img/player.png",
        velocity = { x = 0, y = 0 },
        player = {},
    },
    [1] = {
        point = { x = 0, y = 0 },
        texture = "img/level.png",
        solid = "img/level.png",
    },
}