aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/nebular_scenes6.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/nebular/nebular_scenes6.h')
-rw-r--r--engines/mads/nebular/nebular_scenes6.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/engines/mads/nebular/nebular_scenes6.h b/engines/mads/nebular/nebular_scenes6.h
index 19eb278375..5aecb133f3 100644
--- a/engines/mads/nebular/nebular_scenes6.h
+++ b/engines/mads/nebular/nebular_scenes6.h
@@ -50,8 +50,19 @@ public:
Scene6xx(MADSEngine *vm) : NebularScene(vm) {}
};
-} // End of namespace Nebular
+class Scene601: public Scene6xx{
+public:
+ Scene601(MADSEngine *vm) : Scene6xx(vm) {}
+ virtual void setup();
+ virtual void enter();
+ virtual void step();
+ virtual void preActions() {};
+ virtual void actions();
+ virtual void postActions() {};
+};
+
+} // End of namespace Nebular
} // End of namespace MADS
#endif /* MADS_NEBULAR_SCENES6_H */