Core/Movement: Extend MovePoint with new arguments

Port From (https://github.com/TrinityCore/TrinityCore/commit/0026706e8333c79f8baae341b94e65e1eac484ca)
This commit is contained in:
hondacrx
2023-03-13 03:15:43 -04:00
parent 3db8d740f9
commit 62c3c90017
3 changed files with 88 additions and 51 deletions
@@ -107,6 +107,19 @@ namespace Framework.Constants
public const uint SmartEscortLastOCCPoint = 0xFFFFFF;
}
public enum MovementWalkRunSpeedSelectionMode
{
Default,
ForceRun,
ForceWalk
}
public enum MovementStopReason
{
Finished, // Movement finished either by arriving at location or successfully continuing it for requested duration
Interrupted
}
public enum RotateDirection
{
Left,