TF-EssentialsX/Essentials/src/com/earth2me/essentials/IReplyTo.java
2015-06-03 14:11:56 -06:00

18 lines
299 B
Java

package com.earth2me.essentials;
public interface IReplyTo {
/**
* Sets the user to reply to
*
* @param user
*/
void setReplyTo(CommandSource user);
/**
* Gets the user the sender should reply to
*
* @return
*/
CommandSource getReplyTo();
}