All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.craftbukkit.entity.CraftWitherSkull Maven / Gradle / Ivy

package org.bukkit.craftbukkit.entity;

import net.minecraft.server.EntityWitherSkull;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.WitherSkull;

public class CraftWitherSkull extends CraftFireball implements WitherSkull {
  public CraftWitherSkull(CraftServer server, EntityWitherSkull entity) {
    super(server, entity);
  }

  @Override
  public boolean isCharged() {
    return getHandle().isCharged();
  }

  @Override
  public void setCharged(boolean charged) {
    getHandle().setCharged(charged);
  }

  @Override
  public EntityWitherSkull getHandle() {
    return (EntityWitherSkull) entity;
  }

  @Override
  public String toString() {
    return "CraftWitherSkull";
  }

  public EntityType getType() {
    return EntityType.WITHER_SKULL;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy