diff options
Diffstat (limited to 'engines/mads/nebular/nebular_scenes3.h')
-rw-r--r-- | engines/mads/nebular/nebular_scenes3.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/mads/nebular/nebular_scenes3.h b/engines/mads/nebular/nebular_scenes3.h index 60b3bc1869..247224b7ba 100644 --- a/engines/mads/nebular/nebular_scenes3.h +++ b/engines/mads/nebular/nebular_scenes3.h @@ -434,6 +434,21 @@ public: virtual void actions(); virtual void postActions() {}; }; + +class Scene359: public Scene3xx { +private: + int _cardHotspotId; + +public: + Scene359(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 |