aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_cel.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/objects/actions/action_cel.h')
-rw-r--r--engines/pink/objects/actions/action_cel.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/engines/pink/objects/actions/action_cel.h b/engines/pink/objects/actions/action_cel.h
index 937c23bc08..765fe8dd61 100644
--- a/engines/pink/objects/actions/action_cel.h
+++ b/engines/pink/objects/actions/action_cel.h
@@ -31,28 +31,28 @@ class CelDecoder;
class ActionCEL : public Action {
public:
- ~ActionCEL() override;
+ ~ActionCEL() override;
- ActionCEL();
- virtual void deserialize(Archive &archive);
- virtual void start(bool unk);
- virtual void end();
- virtual void update();
+ ActionCEL();
+ virtual void deserialize(Archive &archive);
+ virtual void start(bool unk);
+ virtual void end();
+ virtual void update();
- uint32 getZ();
- CelDecoder *getDecoder();
+ uint32 getZ();
+ CelDecoder *getDecoder();
- virtual bool initPalette(Director *director);
+ virtual bool initPalette(Director *director);
- void pause() override;
+ void pause() override;
- void unpause() override;
+ void unpause() override;
protected:
- virtual void onStart() {} ;
- CelDecoder *_decoder;
- Common::String _fileName;
- uint32 _z;
+ virtual void onStart() {} ;
+ CelDecoder *_decoder;
+ Common::String _fileName;
+ uint32 _z;
};
} // End of namespace Pink