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

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

Sends GuildNameVote to creature's client.
public static GuildNameVote ( Creature creature, string voterName, bool vote ) : void
creature Creature
voterName string
vote bool
Результат void
		public static void GuildNameVote(Creature creature, string voterName, bool vote)
		{
			var packet = new Packet(Op.GuildNameVote, creature.EntityId);
			packet.PutString(voterName);
			packet.PutByte(vote);

			creature.Client.Send(packet);
		}
Send