aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/nebular_scenes.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/nebular/nebular_scenes.h')
-rw-r--r--engines/mads/nebular/nebular_scenes.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/engines/mads/nebular/nebular_scenes.h b/engines/mads/nebular/nebular_scenes.h
index 1997202fbd..9d617bb543 100644
--- a/engines/mads/nebular/nebular_scenes.h
+++ b/engines/mads/nebular/nebular_scenes.h
@@ -26,6 +26,7 @@
#include "common/scummsys.h"
#include "mads/game.h"
#include "mads/scene.h"
+#include "mads/nebular/globals_nebular.h"
namespace MADS {
@@ -88,6 +89,19 @@ public:
static SceneLogic *createScene(MADSEngine *vm);
};
+/**
+ * Specialized base class for Rex Nebular game scenes
+ */
+class NebularScene : public SceneLogic {
+protected:
+ Globals &_globals;
+public:
+ /**
+ * Constructor
+ */
+ NebularScene(MADSEngine *vm);
+};
+
} // End of namespace Nebular
} // End of namespace MADS