2023-01-12 14:10:43 -08:00
|
|
|
package dev.resent;
|
|
|
|
|
|
|
|
import dev.resent.module.base.ModManager;
|
|
|
|
|
|
|
|
public class Resent {
|
2023-01-20 13:15:54 -08:00
|
|
|
|
2023-01-31 20:40:17 -08:00
|
|
|
public static boolean hasInit = false;
|
|
|
|
|
2023-01-12 14:10:43 -08:00
|
|
|
static {
|
|
|
|
INSTANCE = new Resent();
|
|
|
|
}
|
|
|
|
|
2023-01-30 12:26:42 -08:00
|
|
|
public static String NAME = "Resent", VERSION = "3.4";
|
2023-01-12 14:10:43 -08:00
|
|
|
public static Resent INSTANCE;
|
|
|
|
public ModManager modManager;
|
|
|
|
|
|
|
|
public void init() {
|
|
|
|
Resent.INSTANCE.modManager = new ModManager();
|
2023-01-31 20:40:17 -08:00
|
|
|
hasInit = true;
|
2023-01-12 14:10:43 -08:00
|
|
|
}
|
|
|
|
}
|