Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.RequestPayPricePacket$ObjectDataBlock


  /// <param name="simulator">The <see cref="Simulator"/> the object is located</param>
  /// <param name="objectID">The ID of the object</param>
  /// <remarks>The result is raised in the <see cref="PayPriceReply"/> event</remarks>
  public void RequestPayPrice(Simulator simulator, UUID objectID)
  {
    RequestPayPricePacket payPriceRequest = new RequestPayPricePacket();

    payPriceRequest.ObjectData = new RequestPayPricePacket.ObjectDataBlock();
    payPriceRequest.ObjectData.ObjectID = objectID;

    Client.network.SendPacket(payPriceRequest, simulator);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.RequestPayPricePacket$ObjectDataBlock

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.