mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-20 23:47:31 +00:00
10 lines
192 B
Java
10 lines
192 B
Java
![]() |
package net.ess3.provider;
|
||
|
|
||
|
import org.bukkit.command.Command;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
public interface KnownCommandsProvider extends Provider {
|
||
|
Map<String, Command> getKnownCommands();
|
||
|
}
|