aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/nebular_scenes6.h
diff options
context:
space:
mode:
authorStrangerke2014-05-10 20:58:44 +0200
committerStrangerke2014-05-10 20:58:44 +0200
commit2990034571edac22a606003f76d1619f017f1786 (patch)
tree642d5a25e4134c32a3966023fdf5bb0699eb111d /engines/mads/nebular/nebular_scenes6.h
parent4f4106eff4127ee1dd5eb06e514603fe659af143 (diff)
downloadscummvm-rg350-2990034571edac22a606003f76d1619f017f1786.tar.gz
scummvm-rg350-2990034571edac22a606003f76d1619f017f1786.tar.bz2
scummvm-rg350-2990034571edac22a606003f76d1619f017f1786.zip
MADS: Implement scene 601
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 */