diff options
Diffstat (limited to 'engines/mads/nebular/nebular_scenes4.h')
-rw-r--r-- | engines/mads/nebular/nebular_scenes4.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/mads/nebular/nebular_scenes4.h b/engines/mads/nebular/nebular_scenes4.h index 02115d7d81..e105547740 100644 --- a/engines/mads/nebular/nebular_scenes4.h +++ b/engines/mads/nebular/nebular_scenes4.h @@ -155,6 +155,21 @@ public: virtual void postActions() {}; }; +class Scene407: public Scene4xx { +private: + bool _fromNorth; + Common::Point destPos; + +public: + Scene407(MADSEngine *vm) : Scene4xx(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 |