Started integration of new target system

This commit is contained in:
Auxilor
2020-09-03 19:26:26 +01:00
parent 2134e27dfa
commit c5384fd6e0
407 changed files with 694 additions and 1068 deletions

View File

@@ -1,29 +0,0 @@
package com.willfp.ecoenchants.API;
import org.bukkit.Material;
import java.util.HashSet;
import java.util.Set;
public interface TargetWrapper {
Set<Material> TOOL = new HashSet<>();
Set<Material> ROD = new HashSet<>();
Set<Material> ARMOR = new HashSet<>();
Set<Material> ALL = new HashSet<>();
Set<Material> AXE = new HashSet<>();
Set<Material> BOOK = new HashSet<>();
Set<Material> PICKAXE = new HashSet<>();
Set<Material> HOE = new HashSet<>();
Set<Material> SHOVEL = new HashSet<>();
Set<Material> SWORD = new HashSet<>();
Set<Material> HELMET = new HashSet<>();
Set<Material> CHESTPLATE = new HashSet<>();
Set<Material> LEGGINGS = new HashSet<>();
Set<Material> BOOTS = new HashSet<>();
Set<Material> ELYTRA = new HashSet<>();
Set<Material> BOW = new HashSet<>();
Set<Material> CROSSBOW = new HashSet<>();
Set<Material> SHEARS = new HashSet<>();
Set<Material> TRIDENT = new HashSet<>();
Set<Material> SHIELD = new HashSet<>();
}