Package org.spout.vanilla.component.entity.living.hostile

Examples of org.spout.vanilla.component.entity.living.hostile.EnderDragon


    }
  }

  @EventHandler
  public void onDeath(EntityDeathEvent event) {
    EnderDragon get = event.getEntity().get(EnderDragon.class);
    if (get != null) {
      if (VanillaConfiguration.END_CREDITS.getBoolean()) {
        // TODO: do awesome end credit stuff
      }
    }
View Full Code Here

TOP

Related Classes of org.spout.vanilla.component.entity.living.hostile.EnderDragon

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.