diff options
Diffstat (limited to 'engines/mads/nebular/nebular_scenes3.h')
-rw-r--r-- | engines/mads/nebular/nebular_scenes3.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/mads/nebular/nebular_scenes3.h b/engines/mads/nebular/nebular_scenes3.h index 24b1aef82b..4de4fc1a2c 100644 --- a/engines/mads/nebular/nebular_scenes3.h +++ b/engines/mads/nebular/nebular_scenes3.h @@ -502,6 +502,18 @@ public: virtual void postActions() {}; }; +class Scene388: public Scene3xx { +public: + Scene388(MADSEngine *vm) : Scene3xx(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 |