mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-13 12:38:58 +00:00
10 lines
188 B
Java
10 lines
188 B
Java
![]() |
package com.earth2me.essentials;
|
||
|
|
||
|
import org.bukkit.command.CommandSender;
|
||
|
|
||
|
public interface IReplyTo {
|
||
|
public void setReplyTo(CommandSender user);
|
||
|
|
||
|
public CommandSender getReplyTo();
|
||
|
}
|