summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/com/earth2me/essentials/protect/IProtect.java
blob: ac095e33de77dce3849651f53f766a046fec50a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.earth2me.essentials.protect;

import com.earth2me.essentials.IEssentials;
import com.earth2me.essentials.User;
import com.earth2me.essentials.protect.data.IProtectedBlock;


public interface IProtect
{
	void alert(final User user, final String item, final String type);

	boolean checkProtectionItems(final ProtectConfig list, final int id);

	boolean getSettingBool(final ProtectConfig protectConfig);

	String getSettingString(final ProtectConfig protectConfig);

	IProtectedBlock getStorage();

	IEssentials getEssentials();
}