Initialize

This commit is contained in:
paulevsGitch 2020-09-20 22:09:53 +03:00
parent f2b5bc6985
commit ce76ed9c7a
14 changed files with 517 additions and 21 deletions

View file

@ -0,0 +1,10 @@
package ru.betterend;
import net.fabricmc.api.ModInitializer;
public class BetterEnd implements ModInitializer {
@Override
public void onInitialize() {
System.out.println("Hello Fabric world!");
}
}