summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/IReplyTo.java
blob: ee8e80b4c22001d17183f0e809d3225090c92c1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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();
}