summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/net/ess3/protect/IProtect.java
blob: df2a454a0a9f2167ba217285ebbbd99f3983831b (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
package net.ess3.protect;

import net.ess3.protect.data.IProtectedBlock;
import org.bukkit.plugin.Plugin;


public interface IProtect extends Plugin
{
//	boolean checkProtectionItems(final ProtectConfig list, final int id);
//	boolean getSettingBool(final ProtectConfig protectConfig);
//	String getSettingString(final ProtectConfig protectConfig);
	IProtectedBlock getStorage();

	void setStorage(IProtectedBlock pb);

	EssentialsConnect getEssentialsConnect();

//	Map<ProtectConfig, Boolean> getSettingsBoolean();
//	Map<ProtectConfig, String> getSettingsString();
//	Map<ProtectConfig, List<Integer>> getSettingsList();
	ProtectHolder getSettings();

	void setSettings(ProtectHolder settings);
}