mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-07-02 04:56:40 +00:00
32 lines
467 B
Java
32 lines
467 B
Java
package me.totalfreedom.totalfreedommod.rank;
|
|
|
|
import net.md_5.bungee.api.ChatColor;
|
|
|
|
public interface Displayable
|
|
{
|
|
|
|
String getArticle();
|
|
|
|
String getName();
|
|
|
|
String getTag();
|
|
|
|
String getAbbr();
|
|
|
|
String getPlural();
|
|
|
|
ChatColor getColor();
|
|
|
|
org.bukkit.ChatColor getTeamColor();
|
|
|
|
String getColoredName();
|
|
|
|
String getColoredTag();
|
|
|
|
String getColoredLoginMessage();
|
|
|
|
boolean hasTeam();
|
|
|
|
boolean hasDefaultLoginMessage();
|
|
|
|
} |