Package com.ngt.jopenmetaverse.shared.protocol

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


        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

Related Classes of com.ngt.jopenmetaverse.shared.protocol.LeaveGroupReplyPacket$AgentDataBlock

Copyright © 2018 www.massapicom. 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.