Mavenized project

This commit is contained in:
JeromSar
2015-11-18 21:41:51 +01:00
parent 0c3bc40b03
commit 89a317b7df
207 changed files with 247 additions and 1569 deletions

View File

@ -0,0 +1,26 @@
package me.totalfreedom.totalfreedommod.rank;
import org.bukkit.ChatColor;
public interface Rank
{
public String getName();
public String getTag();
public ChatColor getColor();
public String getColorString();
public String getColoredName();
public String getColoredTag();
public String getColoredLoginMessage();
public boolean isAtLeast(Rank rank);
public int getLevel();
}