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

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


    }
  }

  @Override
  public final List<Message> getDestroyMessages(Entity entity) {
    return Arrays.<Message>asList(new EntityDestroyMessage(new int[]{entity.getId()}));
  }
View Full Code Here


    byte length = buffer.readByte();
    int[] entityid = new int[length];
    for (int i = 0; i < length; i++) {
      entityid[i] = buffer.readInt();
    }
    return new EntityDestroyMessage(entityid);
  }
View Full Code Here

TOP

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

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.