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
|
|
|
|
{
|
2017-03-24 14:03:29 +01:00
|
|
|
String describeTo(RelationParticipator observer);
|
|
|
|
String describeTo(RelationParticipator observer, boolean ucfirst);
|
2011-10-12 17:25:01 +02:00
|
|
|
|
2017-03-24 14:03:29 +01:00
|
|
|
Rel getRelationTo(RelationParticipator observer);
|
|
|
|
Rel getRelationTo(RelationParticipator observer, boolean ignorePeaceful);
|
2011-10-12 17:25:01 +02:00
|
|
|
|
2017-03-24 14:03:29 +01:00
|
|
|
ChatColor getColorTo(RelationParticipator observer);
|
2011-10-12 17:25:01 +02:00
|
|
|
}
|