Aura.Channel.Network.Sending.Send.SkillPrepareCancellation C# (CSharp) Метод

SkillPrepareCancellation() публичный статический Метод

Sends SkillPrepareCancellation to creature's client.
public static SkillPrepareCancellation ( Creature creature, SkillId skillId, byte unkByte ) : void
creature Creature
skillId SkillId
unkByte byte
Результат void
		public static void SkillPrepareCancellation(Creature creature, SkillId skillId, byte unkByte)
		{
			var packet = new Packet(Op.SkillPrepareCancellation, creature.EntityId);
			packet.PutUShort((ushort)skillId);
			packet.PutByte(unkByte);

			creature.Client.Send(packet);
		}
	}
Send