From 82974a9ce37aba6240f7c3543947631170f012c2 Mon Sep 17 00:00:00 2001 From: whiterandrek Date: Tue, 22 May 2018 08:03:37 +0300 Subject: PINK: fix indentation --- engines/pink/objects/walk/walk_mgr.h | 54 ++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'engines/pink/objects/walk/walk_mgr.h') 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 _locations; - WayPoint _current; - WayPoint _next; - bool _isWalking; + LeadActor *_leadActor; + WalkLocation *_destination; + Array _locations; + WayPoint _current; + WayPoint _next; + bool _isWalking; }; } // End of namespace Pink -- cgit v1.2.3