2011-10-12 17:25:01 +02:00
|
|
|
package com.massivecraft.factions.iface;
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
import com.massivecraft.factions.struct.Relation;
|
2011-10-12 17:25:01 +02:00
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public interface RelationParticipator {
|
2014-08-05 17:17:27 +02:00
|
|
|
|
2018-04-07 23:29:24 +02:00
|
|
|
public String describeTo(RelationParticipator that);
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-04-07 23:29:24 +02:00
|
|
|
public String describeTo(RelationParticipator that, boolean ucfirst);
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-04-07 23:29:24 +02:00
|
|
|
public Relation getRelationTo(RelationParticipator that);
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2018-04-07 23:29:24 +02:00
|
|
|
public Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
|
2011-10-12 17:25:01 +02:00
|
|
|
|
2018-04-07 23:29:24 +02:00
|
|
|
public ChatColor getColorTo(RelationParticipator to);
|
2011-10-12 17:25:01 +02:00
|
|
|
}
|