Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.GroupNoticesListRequestPacket$DataBlock


        /// <summary>Request the group notices list</summary>
        /// <param name="group">Group ID to fetch notices for</param>
        public void RequestGroupNoticesList(UUID group)
        {
            GroupNoticesListRequestPacket gnl = new GroupNoticesListRequestPacket();
            gnl.AgentData.AgentID = Client.self.getAgentID();
            gnl.AgentData.SessionID = Client.self.getSessionID();
            gnl.Data.GroupID = group;
            Client.network.SendPacket(gnl);
        }
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.GroupNoticesListRequestPacket$DataBlock

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.