rename stuff
This commit is contained in:
parent
1c6e3a2abf
commit
1695fac71e
6 changed files with 27 additions and 28 deletions
19
src/main/java/xyz/minecommune/micomc/MicoMc.java
Normal file
19
src/main/java/xyz/minecommune/micomc/MicoMc.java
Normal file
|
@ -0,0 +1,19 @@
|
|||
package xyz.minecommune.micomc;
|
||||
|
||||
import org.quiltmc.loader.api.ModContainer;
|
||||
import org.quiltmc.qsl.base.api.entrypoint.ModInitializer;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
public class MicoMc implements ModInitializer {
|
||||
|
||||
// This logger is used to write text to the console and the log file.
|
||||
// It is considered best practice to use your mod name as the logger's name.
|
||||
// That way, it's clear which mod wrote info, warnings, and errors.
|
||||
public static final Logger LOGGER = LoggerFactory.getLogger("Example Mod");
|
||||
|
||||
@Override
|
||||
public void onInitialize(ModContainer mod) {
|
||||
LOGGER.info("Hello Quilt world from {}!", mod.metadata().name());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue