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 /src/Scene.h | |
parent | 49bb775d4cf9935b0f0d54daa358423ac786c9be (diff) |
Add scene controls and win/loss scenarios
Setup ability to check collisions and transition game scene
Diffstat (limited to 'src/Scene.h')
-rw-r--r-- | src/Scene.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Scene.h b/src/Scene.h new file mode 100644 index 0000000..dab51c5 --- /dev/null +++ b/src/Scene.h @@ -0,0 +1,5 @@ +#ifndef DNG_SCENE_H +#define DNG_SCENE_H +/* sync with constants.lua */ +enum Scene { INTRO, LEVEL, WIN, LOSS }; +#endif // DNG_SCENE_H |