Core/Movement: Defined movement force type enum

Port From (https://github.com/TrinityCore/TrinityCore/commit/e2de5000acba888e2ae3177893f6063340902ffd)
This commit is contained in:
hondacrx
2021-12-10 17:33:33 -05:00
parent 3c6f584f33
commit f77b631422
4 changed files with 11 additions and 5 deletions
@@ -136,4 +136,10 @@ namespace Framework.Constants
Mount = 1,
Force = 2
}
public enum MovementForceType
{
SingleDirectional = 0, // always in a single direction
Gravity = 1 // pushes/pulls away from a single point
}
}