Aura.Msgr.Network.Send.GuildMemberRemove C# (CSharp) Method

GuildMemberRemove() public static method

Sends GuildMemberRemove to client.
public static GuildMemberRemove ( MsgrClient client, int contactId ) : void
client MsgrClient
contactId int
return void
		public static void GuildMemberRemove(MsgrClient client, int contactId)
		{
			var packet = new Packet(Op.Msgr.GuildMemberRemove, 0);
			packet.PutInt(contactId);

			client.Send(packet);
		}