resent-1.8/src/main/java/dev/resent/Resent.java

24 lines
561 B
Java
Raw Normal View History

2023-01-12 14:10:43 -08:00
package dev.resent;
import dev.resent.event.impl.Event;
import dev.resent.module.base.ModManager;
import net.minecraft.client.Minecraft;
public class Resent {
static {
INSTANCE = new Resent();
}
public static String NAME = "Resent";
2023-01-14 08:32:35 -08:00
public static String VERSION = "3.3.1";
2023-01-12 14:10:43 -08:00
public static Minecraft mc = Minecraft.getMinecraft();
public static Resent INSTANCE;
public ModManager modManager;
public void init() {
Resent.INSTANCE.modManager = new ModManager();
}
2023-01-14 07:56:36 -08:00
public static void onEvent(Event e) {}
2023-01-12 14:10:43 -08:00
}