2011-10-12 17:25:01 +02:00
|
|
|
package com.massivecraft.factions.iface;
|
|
|
|
|
2014-12-08 00:12:52 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public interface EconomyParticipator extends RelationParticipator {
|
2014-08-05 17:17:27 +02:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public String getAccountId();
|
|
|
|
|
|
|
|
public void msg(String str, Object... args);
|
2014-12-08 00:12:52 +01:00
|
|
|
|
|
|
|
public void msg(TL translation,Object... args);
|
2011-10-12 17:25:01 +02:00
|
|
|
}
|