blob: 8bfb5da68a074134b32f9cc1a938654643f427d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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<String> getActiveChecks(ConfigurationCacheStore cc);
}
|