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
|
|
|
|
{
|
|
|
|
public String describeTo(RelationParticipator that);
|
|
|
|
public String describeTo(RelationParticipator that, boolean ucfirst);
|
|
|
|
|
2011-10-23 17:30:41 +02:00
|
|
|
public Rel getRelationTo(RelationParticipator that);
|
|
|
|
public Rel getRelationTo(RelationParticipator that, boolean ignorePeaceful);
|
2011-10-12 17:25:01 +02:00
|
|
|
|
2011-10-21 20:08:54 +02:00
|
|
|
public ChatColor getColorTo(RelationParticipator to);
|
2011-10-12 17:25:01 +02:00
|
|
|
}
|