aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/game_nebular.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/nebular/game_nebular.h')
-rw-r--r--engines/mads/nebular/game_nebular.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/mads/nebular/game_nebular.h b/engines/mads/nebular/game_nebular.h
index 0e2d564236..ab82cf68d7 100644
--- a/engines/mads/nebular/game_nebular.h
+++ b/engines/mads/nebular/game_nebular.h
@@ -34,6 +34,10 @@ namespace Nebular {
enum StoryMode { STORYMODE_NAUGHTY = 1, STORYMODE_NICE = 2 };
+enum Difficulty {
+ DIFFICULTY_HARD = 1, DIFFICULTY_REALLY_HARD = 2, DIFFICULTY_IMPOSSIBLE = 3
+};
+
enum InventoryObject { OBJ_NONE = -1, OBJ_BINOCULARS = 0,
OBJ_BURGER = 1, OBJ_DEAD_FISH = 2, OBJ_STUFFED_FISH = 3, OBJ_REBREATHER = 4,
OBJ_TIMER_MODULE = 5, OBJ_BIG_LEAVES = 6, OBJ_POISON_DARTS = 7, OBJ_PLANT_STALK = 8,
@@ -65,6 +69,7 @@ protected:
public:
NebularGlobals _globals;
StoryMode _storyMode;
+ Difficulty _difficulty;
virtual Globals &globals() { return _globals; }