summaryrefslogtreecommitdiffstats
path: root/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/NoCheatPlayer.java
blob: bb8ee8a7a6f8dd43187ac93975220ba8a7fc4901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.earth2me.essentials.anticheat;

import com.earth2me.essentials.anticheat.config.ConfigurationCacheStore;
import com.earth2me.essentials.anticheat.data.DataStore;
import com.earth2me.essentials.anticheat.data.ExecutionHistory;
import org.bukkit.entity.Player;


public interface NoCheatPlayer
{
	public boolean hasPermission(String permission);

	public String getName();

	public Player getPlayer();

	public DataStore getDataStore();

	public boolean isDead();

	public boolean isSprinting();

	public int getTicksLived();

	public ConfigurationCacheStore getConfigurationStore();

	public float getSpeedAmplifier();

	public float getJumpAmplifier();

	public boolean isCreative();

	public ExecutionHistory getExecutionHistory();

	public void dealFallDamage();
}