package com.earth2me.essentials.anticheat; import com.earth2me.essentials.anticheat.config.ConfigurationCacheStore; import java.util.List; import org.bukkit.event.Listener; public interface EventManager extends Listener { /** * Used for debug output, if checks are activated for the world-specific config that is given as a parameter * * @param cc The config * @return A list of active/enabled checks */ public List getActiveChecks(ConfigurationCacheStore cc); }