![JAR search and dependency download from the Maven repository](/logo.png)
dev.thomasglasser.sherdsapi.SherdsApiFabric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sherdsapi-fabric-1.20.4 Show documentation
Show all versions of sherdsapi-fabric-1.20.4 Show documentation
Makes adding new pottery sherds easier
The newest version!
package dev.thomasglasser.sherdsapi;
import dev.thomasglasser.sherdsapi.impl.Sherd;
import dev.thomasglasser.sherdsapi.impl.SherdsApiRegistries;
import net.fabricmc.api.ModInitializer;
import net.fabricmc.fabric.api.event.registry.DynamicRegistries;
public class SherdsApiFabric implements ModInitializer {
@Override
public void onInitialize() {
SherdsApi.init();
DynamicRegistries.registerSynced(SherdsApiRegistries.SHERD, Sherd.CODEC, Sherd.CODEC);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy