Core/Movement: 9080e7863c followup

not the desired optimization I was aiming at, ty Shauren
This commit is contained in:
ccrs
2019-01-10 23:02:43 +01:00
parent 9080e7863c
commit 9695c3d46d
2 changed files with 2 additions and 2 deletions

View File

@@ -123,7 +123,7 @@ uint32 MotionMaster::Size() const
return _defaultGenerator ? 1 : 0 + uint32(_generators.size());
}
std::vector<MovementGeneratorInformation> const MotionMaster::GetMovementGeneratorsInformation() const
std::vector<MovementGeneratorInformation> MotionMaster::GetMovementGeneratorsInformation() const
{
std::vector<MovementGeneratorInformation> list;

View File

@@ -105,7 +105,7 @@ class TC_GAME_API MotionMaster
bool Empty() const;
uint32 Size() const;
std::vector<MovementGeneratorInformation> const GetMovementGeneratorsInformation() const;
std::vector<MovementGeneratorInformation> GetMovementGeneratorsInformation() const;
MovementSlot GetCurrentSlot() const;
MovementGenerator* GetCurrentMovementGenerator() const;
MovementGeneratorType GetCurrentMovementGeneratorType() const;