1
0
mirror of https://github.com/Zrips/Jobs.git synced 2025-01-08 01:08:23 +01:00
Jobs/com/gamingmesh/jobs/MythicMobs/MythicMobInterface.java

14 lines
235 B
Java
Raw Normal View History

2017-05-11 13:23:41 +02:00
package com.gamingmesh.jobs.MythicMobs;
import org.bukkit.entity.LivingEntity;
public interface MythicMobInterface {
boolean Check();
boolean isMythicMob(LivingEntity lVictim);
void registerListener();
}