Examples of LeaveGroupReplyPacket


Examples of com.ngt.jopenmetaverse.shared.protocol.LeaveGroupReplyPacket

        protected void LeaveGroupReplyHandler(Object sender, PacketReceivedEventArgs e)
        {
            if (onGroupLeaveReply != null)
            {
                Packet packet = e.getPacket();
                LeaveGroupReplyPacket reply = (LeaveGroupReplyPacket)packet;

                onGroupLeaveReply.raiseEvent(new GroupOperationEventArgs(reply.GroupData.GroupID, reply.GroupData.Success));
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.