mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-22 08:25:12 +00:00
15 lines
No EOL
216 B
Java
15 lines
No EOL
216 B
Java
package com.earth2me.essentials.user;
|
|
|
|
import org.bukkit.Location;
|
|
|
|
|
|
public interface IOfflinePlayer
|
|
{
|
|
String getName();
|
|
|
|
String getDisplayName();
|
|
|
|
Location getBedSpawnLocation();
|
|
|
|
void setBanned(boolean bln);
|
|
} |