TamableFoxes/Utility/src/main/java/net/seanomik/tamablefoxes/util/NMSInterface.java

13 lines
259 B
Java
Raw Normal View History

package net.seanomik.tamablefoxes.util;
import org.bukkit.Location;
public interface NMSInterface {
enum FoxType {
RED,
SNOW
}
public void registerCustomFoxEntity();
public void spawnTamableFox(Location loc, FoxType type);
}