summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/IReplyTo.java
blob: c2a1deec54ac3226842181b017fff6bfacc252d7 (plain)
1
2
3
4
5
6
7
8
9
package com.earth2me.essentials.api;

import org.bukkit.command.CommandSender;

public interface IReplyTo {
	void setReplyTo(CommandSender user);

	CommandSender getReplyTo();
}