2011-10-12 17:25:01 +02:00
|
|
|
package com.massivecraft.factions.iface;
|
|
|
|
|
|
|
|
import org.bukkit.ChatColor;
|
2011-10-23 17:30:41 +02:00
|
|
|
import com.massivecraft.factions.struct.Rel;
|
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
|
|
|
}
|