Examples of AgentDropGroupMessage


Examples of com.ngt.jopenmetaverse.shared.sim.message.LindenMessages.AgentDropGroupMessage

        protected void AgentDropGroupMessageHandler(String capsKey, IMessage message, Simulator simulator)
        {
           
            if (onGroupDropped != null)
            {
                AgentDropGroupMessage msg = (AgentDropGroupMessage)message;
                for (int i = 0; i < msg.AgentDataBlock.length; i++)
                {
                    onGroupDropped.raiseEvent(new GroupDroppedEventArgs(msg.AgentDataBlock[i].GroupID));
                }
            }
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.