Examples of ObjectEntityProtocol


Examples of org.spout.vanilla.protocol.entity.object.ObjectEntityProtocol

public class Egg extends Substance implements Projectile {
  private Entity shooter;

  @Override
  public void onAttached() {
    setEntityProtocol(new ObjectEntityProtocol(ObjectType.EGG));
    super.onAttached();
  }
View Full Code Here

Examples of org.spout.vanilla.protocol.entity.object.ObjectEntityProtocol

public class EnderPearl extends Substance implements Projectile {
  private Entity shooter;

  @Override
  public void onAttached() {
    setEntityProtocol(new ObjectEntityProtocol(ObjectType.ENDER_PEARL));
    super.onAttached();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.