blob: bc57fc29750dfd94fad594aab580902f92a40f06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package cc.polyfrost.oneconfig.utils.commands;
/**
* A helper class for commands.
* Extend this class and run {@link CommandHelper#preload()} (which does nothing,
* just makes loading look nicer lol)
*
* @see cc.polyfrost.oneconfig.utils.commands.annotations.Command
*/
public abstract class CommandHelper {
public CommandHelper() {
CommandManager.registerCommand(this);
}
public void preload() {
}
}
|