summaryrefslogtreecommitdiff
path: root/include/constants.lua
diff options
context:
space:
mode:
authorSteph Enders <smenders@gmail.com>2022-06-16 16:14:18 -0400
committerSteph Enders <smenders@gmail.com>2022-06-16 16:16:34 -0400
commitc57ae8c42c1f2f2ed576719c00cff5cf613fe650 (patch)
tree0e0c6533b099edbe2c283a8961b1b240d29ad904 /include/constants.lua
parent750b308d70cf1c903812316deeb0a8c4befa37ce (diff)
Added onUpdate logic to move the enemies etc
Created some algorithm logic for enemy movement Allowed for default overrides
Diffstat (limited to 'include/constants.lua')
-rw-r--r--include/constants.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/constants.lua b/include/constants.lua
index 5d8e860..922a35b 100644
--- a/include/constants.lua
+++ b/include/constants.lua
@@ -5,6 +5,6 @@ KEY_D = 100
KEY_SPACE = ' '
-TILE_WALL = 'w'
-TILE_SPACE = ' '
-TILE_ENEMY = 'e' \ No newline at end of file
+MAP_WALL = 1
+MAP_SPACE = 0
+MAP_VISITED = -1