mirror of
https://github.com/Zrips/Jobs.git
synced 2025-01-25 09:32:13 +01:00
02ad7df873
- Fix incomplete-switch argument
23 lines
634 B
Java
23 lines
634 B
Java
package com.gamingmesh.jobs;
|
|
|
|
import java.util.List;
|
|
import org.bukkit.block.Block;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.entity.LivingEntity;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.block.BlockPistonRetractEvent;
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
public interface NMS {
|
|
|
|
public List<Block> getPistonRetractBlocks(BlockPistonRetractEvent event);
|
|
|
|
public String getRealType(Entity entity);
|
|
|
|
public ItemStack getItemInMainHand(Player player);
|
|
|
|
public void setItemInMainHand(Player player, ItemStack item);
|
|
|
|
public double getMaxHealth(LivingEntity entity);
|
|
}
|