diff options
| author | 2024-04-29 19:05:11 +0100 | |
|---|---|---|
| committer | 2024-05-05 15:00:08 -0500 | |
| commit | b0b4b5eb65e3dfa9f4c62df633a5078173f49005 (patch) | |
| tree | 37aed041d30414333ab911f05b0dc21d47396bb3 /src/main/java/com/example/ExampleMod.java | |
| parent | 1.20.5 (diff) | |
1.20.61.20
Diffstat (limited to 'src/main/java/com/example/ExampleMod.java')
| -rw-r--r-- | src/main/java/com/example/ExampleMod.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main/java/com/example/ExampleMod.java b/src/main/java/com/example/ExampleMod.java deleted file mode 100644 index f97cce9..0000000 --- a/src/main/java/com/example/ExampleMod.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.example; - -import net.fabricmc.api.ModInitializer; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -public class ExampleMod 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 id as the logger's name. - // That way, it's clear which mod wrote info, warnings, and errors. - public static final Logger LOGGER = LoggerFactory.getLogger("modid"); - - @Override - public void onInitialize() { - // This code runs as soon as Minecraft is in a mod-load-ready state. - // However, some things (like resources) may still be uninitialized. - // Proceed with mild caution. - - LOGGER.info("Hello Fabric world!"); - } -}
\ No newline at end of file |
