Package net.lightstone.msg

Examples of net.lightstone.msg.EntityVelocityMessage


  public EntityVelocityMessage decode(ChannelBuffer buffer) throws IOException {
    int id = buffer.readInt();
    int vx = buffer.readUnsignedShort();
    int vy = buffer.readUnsignedShort();
    int vz = buffer.readUnsignedShort();
    return new EntityVelocityMessage(id, vx, vy, vz);
  }
View Full Code Here

TOP

Related Classes of net.lightstone.msg.EntityVelocityMessage

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.