Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="e">The EventArgs object containing the packet data</param>
  protected void RegionHandleReplyHandler(Object sender, PacketReceivedEventArgs e)
  {           
    if (OnRegionHandleReply != null)
    {
      RegionIDAndHandleReplyPacket reply = (RegionIDAndHandleReplyPacket)e.getPacket();
      OnRegionHandleReply.raiseEvent(new RegionHandleReplyEventArgs(reply.ReplyBlock.RegionID, reply.ReplyBlock.RegionHandle));
    }
  }
View Full Code Here

TOP

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

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.