mirror of
https://e.coding.net/circlecloud/Residence.git
synced 2025-11-25 21:56:06 +00:00
19 lines
371 B
Java
19 lines
371 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package cn.citycraft.Residence.permissions;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
/**
|
|
*
|
|
* @author Administrator
|
|
*/
|
|
public interface PermissionsInterface {
|
|
public String getPlayerGroup(Player player);
|
|
|
|
public String getPlayerGroup(String player, String world);
|
|
}
|