Package org.spout.vanilla.protocol.msg.entity

Examples of org.spout.vanilla.protocol.msg.entity.EntityActionMessage


  @Override
  public EntityActionMessage decode(ByteBuf buffer) throws IOException {
    int id = buffer.readInt();
    int action = buffer.readUnsignedByte();
    int jumpBoost = buffer.readInt();
    return new EntityActionMessage(id, action, jumpBoost);
  }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.protocol.msg.entity.EntityActionMessage

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.