mirror of
https://github.com/Zrips/Jobs.git
synced 2025-01-06 16:27:59 +01:00
14 lines
235 B
Java
14 lines
235 B
Java
package com.gamingmesh.jobs.MythicMobs;
|
|
|
|
import org.bukkit.entity.LivingEntity;
|
|
|
|
public interface MythicMobInterface {
|
|
|
|
boolean Check();
|
|
|
|
boolean isMythicMob(LivingEntity lVictim);
|
|
|
|
void registerListener();
|
|
|
|
}
|