aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/phantom/game_phantom.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/phantom/game_phantom.h')
-rw-r--r--engines/mads/phantom/game_phantom.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/mads/phantom/game_phantom.h b/engines/mads/phantom/game_phantom.h
index 44b2321f42..8020d3ef6c 100644
--- a/engines/mads/phantom/game_phantom.h
+++ b/engines/mads/phantom/game_phantom.h
@@ -35,6 +35,10 @@ namespace Phantom {
// TODO: Adapt for Phantom's difficulty setting
enum StoryMode { STORYMODE_NAUGHTY = 1, STORYMODE_NICE = 2 };
+enum Difficulty {
+ DIFFICULTY_HARD = 1, DIFFICULTY_MEDIUM = 2, DIFFICULTY_EASY = 3
+};
+
enum InventoryObject {
OBJ_NONE = -1,
OBJ_KEY = 0,
@@ -79,6 +83,8 @@ protected:
public:
PhantomGlobals _globals;
StoryMode _storyMode;
+ Difficulty _difficulty;
+
virtual Globals &globals() { return _globals; }