blob: 608472a6d2011dde2787e36751ae442f7ab419f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package dev.mayaqq.ygasi;
import dev.mayaqq.ygasi.registry.*;
import dev.mayaqq.ygasi.secrete.Frog;
import net.fabricmc.api.ModInitializer;
import net.minecraft.util.Identifier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Ygasi implements ModInitializer {
public static final Logger LOGGER = LoggerFactory.getLogger("ygasi");
public static Identifier click = new Identifier("ui.button.click");
@Override
public void onInitialize() {
//load the config data and register everything that needs to be registered on startup
//test
ConfigRegistry.load();
ItemRegistry.register();
StatRegistry.register();
CommandRegistry.register();
EventRegistry.register();
Frog.blender();
LOGGER.info("You've Got A Skill Issue! (YGASI has been initialized!)");
}
}
|