use of me.semx11.autotip.event.impl.EventClientTick in project Hyperium by HyperiumClient.
the class Autotip method init.
public void init() {
ErrorReport.setAutotip(this);
RequestHandler.setAutotip(this);
UniversalUtil.setAutotip(this);
minecraft = Minecraft.getMinecraft();
mcVersion = UniversalUtil.getMinecraftVersion();
version = new Version(VERSION);
messageUtil = new MessageUtil(this);
registerEvents(new EventClientTick(this));
taskManager = new TaskManager();
taskManager.schedule(this::setup, 0);
}
Aggregations