mirror of
https://e.coding.net/circlecloud/Residence.git
synced 2025-11-25 21:56:06 +00:00
21 lines
360 B
Java
21 lines
360 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package com.bekvon.bukkit.residence.event;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
/**
|
|
*
|
|
* @author Administrator
|
|
*/
|
|
public interface ResidencePlayerEventInterface {
|
|
public boolean isAdmin();
|
|
|
|
public boolean isPlayer();
|
|
|
|
public Player getPlayer();
|
|
}
|