diff options
Diffstat (limited to 'include/stage.h')
-rwxr-xr-x | include/stage.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/stage.h b/include/stage.h index 39d1349..8a97dab 100755 --- a/include/stage.h +++ b/include/stage.h @@ -83,8 +83,8 @@ enum SceneParameters { enum PowerupStoreTypes { BEAT_LEVEL = 0, // Keeps powerups - EXIT_LEVEL = 1, // Loses powerups, resets to previous state - LOSE_LEVEL = 2 // Loses everything + LOSE_LEVEL = 1, // Loses everything + EXIT_LEVEL = 2 // Loses powerups, resets to previous state }; @@ -101,6 +101,8 @@ enum Wipes { void ExitStage(int scene, int sceneParams, int powerupStoreType, int wipe); +extern PowerupStoreTypes LastPowerupStoreType; + |