From e03d74be36a9b410b1612737605d248a5eecc51e Mon Sep 17 00:00:00 2001 From: William Hubbard <75867393+Markil3@users.noreply.github.com> Date: Sun, 5 Feb 2023 13:09:30 -0700 Subject: [PATCH] Adds rooms constants Forgot to commit this. --- constants.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/constants.py b/constants.py index 8789148..6806087 100644 --- a/constants.py +++ b/constants.py @@ -1 +1,6 @@ -CONST_FPS = 60 \ No newline at end of file +CONST_FPS = 60 + +ROOM_START = 0 +ROOM_MAIN = 1 +ROOM_END = 2 +ROOM_NEXT = -1