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.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/engines/mads/nebular/nebular_scenes.h b/engines/mads/nebular/nebular_scenes.h
index 9d617bb543..92b5626bf0 100644
--- a/engines/mads/nebular/nebular_scenes.h
+++ b/engines/mads/nebular/nebular_scenes.h
@@ -95,6 +95,11 @@ public:
class NebularScene : public SceneLogic {
protected:
Globals &_globals;
+
+ /**
+ * Forms an animation resoucre name
+ */
+ Common::String formAnimName(char sepChar, int suffixNum);
public:
/**
* Constructor
@@ -102,6 +107,17 @@ public:
NebularScene(MADSEngine *vm);
};
+class SceneInfoNebular : public SceneInfo {
+ friend class SceneInfo;
+protected:
+ virtual void loadCodes(MSurface &depthSurface);
+
+ /**
+ * Constructor
+ */
+ SceneInfoNebular(MADSEngine *vm) : SceneInfo(vm) {}
+};
+
} // End of namespace Nebular
} // End of namespace MADS