You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
343 B
Lua

3 months ago
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",
},
}