mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 04:36:44 +00:00
22 lines
354 B
Java
22 lines
354 B
Java
![]() |
package com.earth2me.essentials;
|
||
|
|
||
|
import org.bukkit.entity.Player;
|
||
|
|
||
|
|
||
|
public interface IPermissionsHandler
|
||
|
{
|
||
|
|
||
|
String getGroup(Player base);
|
||
|
|
||
|
boolean canBuild(Player base, String group);
|
||
|
|
||
|
boolean inGroup(Player base, String group);
|
||
|
|
||
|
boolean hasPermission(Player base, String node);
|
||
|
|
||
|
String getPrefix(Player base);
|
||
|
|
||
|
String getSuffix(Player base);
|
||
|
|
||
|
}
|