Aura.Channel.Network.Sending.Send.CollectAnimationCancel C# (CSharp) Method

CollectAnimationCancel() public static method

Broadcasts CollectAnimationCancel in creature's range.
public static CollectAnimationCancel ( Creature creature ) : void
creature Aura.Channel.World.Entities.Creature
return void
		public static void CollectAnimationCancel(Creature creature)
		{
			var packet = new Packet(Op.CollectAnimationCancel, creature.EntityId);

			creature.Region.Broadcast(packet, creature);
		}
Send