2013-04-18 14:57:56 +02:00
|
|
|
package com.massivecraft.factions.chat;
|
|
|
|
|
2013-04-22 13:03:21 +02:00
|
|
|
import com.massivecraft.factions.entity.FPlayer;
|
|
|
|
|
2013-04-18 14:57:56 +02:00
|
|
|
|
|
|
|
public interface ChatModifier
|
|
|
|
{
|
|
|
|
public String getId();
|
2013-04-22 13:03:21 +02:00
|
|
|
public String getModified(String subject, FPlayer fsender, FPlayer frecipient);
|
2013-04-18 14:57:56 +02:00
|
|
|
public boolean register();
|
|
|
|
public boolean unregister();
|
|
|
|
}
|