mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-20 23:47:31 +00:00
21 lines
542 B
Java
21 lines
542 B
Java
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();
|
|
}
|