diff options
author | Steph Enders <smenders@gmail.com> | 2022-06-17 11:19:51 -0400 |
---|---|---|
committer | Steph Enders <smenders@gmail.com> | 2022-06-17 11:19:51 -0400 |
commit | 87a53f2a09a204ca9bcdde9c73db414c79075326 (patch) | |
tree | 5dbb78e554d01a8f9dd1e3cdf11d4077f0d15676 /include/constants.lua | |
parent | 49bb775d4cf9935b0f0d54daa358423ac786c9be (diff) |
Add scene controls and win/loss scenarios
Setup ability to check collisions and transition game scene
Diffstat (limited to 'include/constants.lua')
-rw-r--r-- | include/constants.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/constants.lua b/include/constants.lua index 922a35b..ab5fcf1 100644 --- a/include/constants.lua +++ b/include/constants.lua @@ -8,3 +8,8 @@ KEY_SPACE = ' ' MAP_WALL = 1 MAP_SPACE = 0 MAP_VISITED = -1 + +SCENE_INTRO = 0 +SCENE_LEVEL = 1 +SCENE_WIN = 2 +SCENE_LOSS = 3
\ No newline at end of file |