Package com.ngt.jopenmetaverse.shared.protocol

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


  /// Delete a classified ad
  /// </summary>
  /// <param name="classifiedID">The classified ads ID</param>
  public void DeleteClassfied(UUID classifiedID)
  {
    ClassifiedDeletePacket classified = new ClassifiedDeletePacket();
    classified.AgentData.AgentID = Client.self.getAgentID();
    classified.AgentData.SessionID = Client.self.getSessionID();

    classified.Data.ClassifiedID = classifiedID;
    Client.network.SendPacket(classified);
View Full Code Here

TOP

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