aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/director.h
diff options
context:
space:
mode:
authorwhiterandrek2018-05-22 08:03:37 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commit82974a9ce37aba6240f7c3543947631170f012c2 (patch)
tree6aeed5f5edfb1c758b2c18b8ac224bde40eaff8c /engines/pink/director.h
parent931d6adbcbbe063857814dc76886e9a967b2a4f3 (diff)
downloadscummvm-rg350-82974a9ce37aba6240f7c3543947631170f012c2.tar.gz
scummvm-rg350-82974a9ce37aba6240f7c3543947631170f012c2.tar.bz2
scummvm-rg350-82974a9ce37aba6240f7c3543947631170f012c2.zip
PINK: fix indentation
Diffstat (limited to 'engines/pink/director.h')
-rw-r--r--engines/pink/director.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/engines/pink/director.h b/engines/pink/director.h
index c2decd0a66..b1566e7000 100644
--- a/engines/pink/director.h
+++ b/engines/pink/director.h
@@ -36,28 +36,28 @@ class CelDecoder;
class Director {
public:
- Director(OSystem *system);
- Actor *getActorByPoint(Common::Point point);
+ Director(OSystem *system);
+ Actor *getActorByPoint(Common::Point point);
- void draw();
- void update();
+ void draw();
+ void update();
- void addSprite(ActionCEL *sprite);
- void removeSprite(ActionCEL *sprite);
- void setPallette(const byte *pallete);
+ void addSprite(ActionCEL *sprite);
+ void removeSprite(ActionCEL *sprite);
+ void setPallette(const byte *pallete);
- void addSound(ActionSound* sound);
- void removeSound(ActionSound* sound);
+ void addSound(ActionSound* sound);
+ void removeSound(ActionSound* sound);
- void clear();
+ void clear();
- bool showBounds;
+ bool showBounds;
private:
- void drawSprite(ActionCEL *sprite);
- OSystem *_system;
- Common::Array<ActionCEL*> _sprites;
- Common::Array<ActionSound*> _sounds;
+ void drawSprite(ActionCEL *sprite);
+ OSystem *_system;
+ Common::Array<ActionCEL*> _sprites;
+ Common::Array<ActionSound*> _sounds;
};
} // End of namespace Pink