diff options
author | falseresync <falseresync@gmail.com> | 2019-07-03 19:40:14 +0000 |
---|---|---|
committer | falseresync <falseresync@gmail.com> | 2019-07-03 19:40:14 +0000 |
commit | 854eba2e998951ae30c45825e3cf3180ec77c2b7 (patch) | |
tree | eefedc371f9ef18b648a57bf6449571ec61cc7c0 /src/main/java/net/fabricmc/example/ExampleMod.java | |
download | LibGui-854eba2e998951ae30c45825e3cf3180ec77c2b7.tar.gz LibGui-854eba2e998951ae30c45825e3cf3180ec77c2b7.tar.bz2 LibGui-854eba2e998951ae30c45825e3cf3180ec77c2b7.zip |
Initial commit
Diffstat (limited to 'src/main/java/net/fabricmc/example/ExampleMod.java')
-rw-r--r-- | src/main/java/net/fabricmc/example/ExampleMod.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/net/fabricmc/example/ExampleMod.java b/src/main/java/net/fabricmc/example/ExampleMod.java new file mode 100644 index 0000000..e5ed082 --- /dev/null +++ b/src/main/java/net/fabricmc/example/ExampleMod.java @@ -0,0 +1,14 @@ +package net.fabricmc.example; + +import net.fabricmc.api.ModInitializer; + +public class ExampleMod implements ModInitializer { + @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. + + System.out.println("Hello Fabric world!"); + } +} |