Archived
0
This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
ChatAPI/net/nemez/chatapi/click/RunnableCallback.java
2017-07-22 12:31:16 +02:00

18 lines
405 B
Java

package net.nemez.chatapi.click;
import org.bukkit.command.CommandSender;
public class RunnableCallback extends ClickCallback {
private Runnable runnable;
public RunnableCallback(Runnable runnable, boolean repeatable, boolean async, String expiredMessage) {
super(repeatable, async, expiredMessage);
}
@Override
public void run(CommandSender sender) {
runnable.run();
}
}