2013-04-22 09:37:53 +02:00
|
|
|
package com.massivecraft.factions;
|
2011-10-12 17:25:01 +02:00
|
|
|
|
|
|
|
import org.bukkit.ChatColor;
|
2013-04-09 13:24:55 +02:00
|
|
|
|
2011-10-12 17:25:01 +02:00
|
|
|
|
|
|
|
public interface RelationParticipator
|
|
|
|
{
|
2011-10-24 11:07:06 +02:00
|
|
|
public String describeTo(RelationParticipator observer);
|
|
|
|
public String describeTo(RelationParticipator observer, boolean ucfirst);
|
2011-10-12 17:25:01 +02:00
|
|
|
|
2011-10-24 11:07:06 +02:00
|
|
|
public Rel getRelationTo(RelationParticipator observer);
|
|
|
|
public Rel getRelationTo(RelationParticipator observer, boolean ignorePeaceful);
|
2011-10-12 17:25:01 +02:00
|
|
|
|
2011-10-24 11:07:06 +02:00
|
|
|
public ChatColor getColorTo(RelationParticipator observer);
|
2011-10-12 17:25:01 +02:00
|
|
|
}
|