aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/walk/walk_mgr.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/objects/walk/walk_mgr.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/objects/walk/walk_mgr.h')
-rw-r--r--engines/pink/objects/walk/walk_mgr.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/engines/pink/objects/walk/walk_mgr.h b/engines/pink/objects/walk/walk_mgr.h
index 994796942b..64bd16e48b 100644
--- a/engines/pink/objects/walk/walk_mgr.h
+++ b/engines/pink/objects/walk/walk_mgr.h
@@ -34,39 +34,39 @@ class WalkAction;
class WalkMgr : public Object {
public:
- WalkMgr();
- virtual void deserialize(Archive &archive);
- void toConsole() override;
+ WalkMgr();
+ virtual void deserialize(Archive &archive);
+ void toConsole() override;
- WalkLocation *findLocation(const Common::String &name);
- void start(WalkLocation *destination);
- void update();
+ WalkLocation *findLocation(const Common::String &name);
+ void start(WalkLocation *destination);
+ void update();
- double getLengthBetweenLocations(WalkLocation *first, WalkLocation *second);
- void setCurrentWayPoint(WalkLocation *location);
+ double getLengthBetweenLocations(WalkLocation *first, WalkLocation *second);
+ void setCurrentWayPoint(WalkLocation *location);
private:
- struct Coordinates {
- int x;
- int y;
- int z;
- };
- struct WayPoint {
- Common::String name;
- Coordinates coord;
- };
+ struct Coordinates {
+ int x;
+ int y;
+ int z;
+ };
+ struct WayPoint {
+ Common::String name;
+ Coordinates coord;
+ };
- Coordinates getLocationCoordinates(const Common::String &locationName);
- void end();
- void initNextWayPoint(WalkLocation *location);
- WalkAction *getWalkAction();
+ Coordinates getLocationCoordinates(const Common::String &locationName);
+ void end();
+ void initNextWayPoint(WalkLocation *location);
+ WalkAction *getWalkAction();
- LeadActor *_leadActor;
- WalkLocation *_destination;
- Array<WalkLocation*> _locations;
- WayPoint _current;
- WayPoint _next;
- bool _isWalking;
+ LeadActor *_leadActor;
+ WalkLocation *_destination;
+ Array<WalkLocation*> _locations;
+ WayPoint _current;
+ WayPoint _next;
+ bool _isWalking;
};
} // End of namespace Pink