2021-06-23 19:54:58 +00:00
|
|
|
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);
|
2020-07-14 17:51:21 +00:00
|
|
|
}
|