mirror of
https://github.com/Zrips/Jobs.git
synced 2025-01-08 01:08:23 +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();
|
||
|
|
||
|
}
|