use of cc.hyperium.mods.chromahud.commands.CommandChromaHUD in project Hyperium by HyperiumClient.
the class ChromaHUD method init.
public AbstractMod init() {
suggestedConfigurationFile = new File(Hyperium.folder, "/displayconfig.json");
ChromaHUDApi.getInstance().register(new DefaultChromaHUDParser());
ChromaHUDApi.getInstance().register(new HyperiumChromaHudParser());
registerConfigElements();
setup();
EventBus.INSTANCE.register(new ElementRenderer(this));
Hyperium.INSTANCE.getHandlers().getHyperiumCommandHandler().registerCommand(new CommandChromaHUD(this));
return this;
}
Aggregations