Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.RegionHandleRequestPacket$RequestBlockBlock


  /// Request the region handle for the specified region UUID
  /// </summary>
  /// <param name="regionID">UUID of the region to look up</param>
  public void RequestRegionHandle(UUID regionID)
  {
    RegionHandleRequestPacket request = new RegionHandleRequestPacket();
    request.RequestBlock = new RegionHandleRequestPacket.RequestBlockBlock();
    request.RequestBlock.RegionID = regionID;
    Client.network.SendPacket(request);
  }
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.RegionHandleRequestPacket$RequestBlockBlock

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.