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

UseGestureR() public static method

Sends UseGestureR to creature's client.
public static UseGestureR ( Creature creature, bool success ) : void
creature Creature
success bool
return void
		public static void UseGestureR(Creature creature, bool success)
		{
			var packet = new Packet(Op.UseGestureR, creature.EntityId);
			packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send