From 189afb447e2c76e5dd5e4550e786c5175a828cbc Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 5 Aug 2024 21:49:23 -0400 Subject: add lua support --- scripts/world.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 scripts/world.lua (limited to 'scripts/world.lua') diff --git a/scripts/world.lua b/scripts/world.lua new file mode 100644 index 0000000..5be4441 --- /dev/null +++ b/scripts/world.lua @@ -0,0 +1,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", + }, +} + -- cgit v1.2.3