Essentials/Essentials/src/com/earth2me/essentials/IReplyTo.java

17 lines
269 B
Java

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