changed some basic stuff

This commit is contained in:
Marcel Marcel 2021-05-21 18:18:32 +02:00
parent 5a12d62522
commit de15912066
5 changed files with 11 additions and 10 deletions

View file

@ -0,0 +1,14 @@
package net.saltymc.eaa;
import net.fabricmc.api.ModInitializer;
public class EaaMod 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("EAA Mod initializing...");
}
}