Package com.ngt.jopenmetaverse.shared.protocol

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


  /// </summary>
  /// <param name="id">Mute UUID</param>
  /// <param name="name">Mute name</param>
  public void RemoveMuteListEntry(UUID id, String name)
  {
    RemoveMuteListEntryPacket p = new RemoveMuteListEntryPacket();
    p.AgentData.AgentID = Client.self.getAgentID();
    p.AgentData.SessionID = Client.self.getSessionID();

    p.MuteData.MuteID = id;
    p.MuteData.MuteName = Utils.stringToBytesWithTrailingNullByte(name);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.RemoveMuteListEntryPacket$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.