From 87a53f2a09a204ca9bcdde9c73db414c79075326 Mon Sep 17 00:00:00 2001 From: Steph Enders Date: Fri, 17 Jun 2022 11:19:51 -0400 Subject: Add scene controls and win/loss scenarios Setup ability to check collisions and transition game scene --- include/constants.lua | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/constants.lua') 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 -- cgit v1.2.3-54-g00ecf