sort of working Fabric commands

This commit is contained in:
dfsek
2021-03-09 03:07:02 -07:00
parent 5fc012f7ba
commit 0f39d64d72
11 changed files with 216 additions and 30 deletions
@@ -0,0 +1,12 @@
package com.dfsek.terra.commands;
import com.dfsek.terra.api.command.CommandManager;
import com.dfsek.terra.api.command.exception.MalformedCommandException;
import com.dfsek.terra.commands.profiler.ProfileCommand;
public final class CommandUtil {
public static void registerAll(CommandManager manager) throws MalformedCommandException {
manager.register("structure", StructureCommand.class);
manager.register("profile", ProfileCommand.class);
}
}