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