mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-16 12:09:12 +03:00
9 lines
175 B
Java
9 lines
175 B
Java
package pro.gravit.launchserver;
|
|
|
|
import pro.gravit.utils.command.Command;
|
|
|
|
import java.util.Map;
|
|
|
|
public interface Reconfigurable {
|
|
Map<String, Command> getCommands();
|
|
}
|