Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="id">Mute UUID</param>
  /// <param name="name">Mute name</param>
  /// <param name="flags">Mute flags</param>
  public void UpdateMuteListEntry(MuteType type, UUID id, String name, EnumSet<MuteFlags> flags)
  {
    UpdateMuteListEntryPacket p = new UpdateMuteListEntryPacket();
    p.AgentData.AgentID = Client.self.getAgentID();
    p.AgentData.SessionID = Client.self.getSessionID();

    p.MuteData.MuteType = (int)type.getIndex();
    p.MuteData.MuteID = id;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.UpdateMuteListEntryPacket

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.