Aura.Channel.World.Entities.Creature.GetHitTracker C# (CSharp) Method

GetHitTracker() public method

Returns the tracker for the creature with the given id, or null if it doesn't exist.
public GetHitTracker ( long entityId ) : HitTracker
entityId long
return HitTracker
		public HitTracker GetHitTracker(long entityId)
		{
			HitTracker result = null;

			lock (_hitTrackers)
				_hitTrackers.TryGetValue(entityId, out result);

			return result;
		}