Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.EventInfoReplyPacket$EventDataBlock


  protected void EventInfoReplyHandler(Object sender, PacketReceivedEventArgs e) throws UnsupportedEncodingException
  {
    if (OnEventInfo != null)
    {
      Packet packet = e.getPacket();
      EventInfoReplyPacket eventReply = (EventInfoReplyPacket)packet;
      EventInfo evinfo = new EventInfo();
      evinfo.ID = eventReply.EventData.EventID;
      evinfo.Name = Utils.bytesWithTrailingNullByteToString(eventReply.EventData.Name);
      evinfo.Desc = Utils.bytesWithTrailingNullByteToString(eventReply.EventData.Desc);
      evinfo.Amount = eventReply.EventData.Amount;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.EventInfoReplyPacket$EventDataBlock

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.