TamableFoxes/src/main/java/net/seanomik/tamablefoxes/versions/NMSInterface.java

15 lines
374 B
Java
Raw Normal View History

package net.seanomik.tamablefoxes.versions;
//import net.minecraft.server.v1_15_R1.EntityFox;
import net.seanomik.tamablefoxes.TamableFoxes;
import org.bukkit.Location;
public interface NMSInterface {
enum FoxType {
RED,
SNOW
}
public void registerCustomFoxEntity();
public void spawnTamableFox(Location loc, FoxType type);
}