diff options
author | Bendegúz Nagy | 2016-06-15 10:41:33 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | ad8fbaa118e26cb57d3d77ddb7a597c2b37a9f76 (patch) | |
tree | a93b53da2c994d2e2c9f7391c0b061fc9461322e /engines/dm/dm.h | |
parent | 3ca7622a6ca4563f7c906013d59f9213a55f4c1b (diff) | |
download | scummvm-rg350-ad8fbaa118e26cb57d3d77ddb7a597c2b37a9f76.tar.gz scummvm-rg350-ad8fbaa118e26cb57d3d77ddb7a597c2b37a9f76.tar.bz2 scummvm-rg350-ad8fbaa118e26cb57d3d77ddb7a597c2b37a9f76.zip |
DM: Add event manager
Diffstat (limited to 'engines/dm/dm.h')
-rw-r--r-- | engines/dm/dm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/dm/dm.h b/engines/dm/dm.h index 817c3ece28..b77f2cce44 100644 --- a/engines/dm/dm.h +++ b/engines/dm/dm.h @@ -4,6 +4,7 @@ #include "common/random.h" #include "engines/engine.h" #include "gui/debugger.h" +#include "eventman.h" namespace DM { @@ -87,6 +88,7 @@ public: Common::RandomSource *_rnd; DisplayMan *_displayMan; DungeonMan *_dungeonMan; + EventManager *_eventMan; }; class Console : public GUI::Debugger { |