dev.the_fireplace.grandeconomy.nativeeconomy.NativeEconomyEntrypoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GrandEconomy Show documentation
Show all versions of GrandEconomy Show documentation
A server-side economy mod/api for Minecraft.
package dev.the_fireplace.grandeconomy.nativeeconomy;
import dev.the_fireplace.grandeconomy.GrandEconomy;
import dev.the_fireplace.grandeconomy.api.EconomyRegistry;
import dev.the_fireplace.grandeconomy.api.GrandEconomyEntrypoint;
public class NativeEconomyEntrypoint implements GrandEconomyEntrypoint {
@Override
public void init(EconomyRegistry economyRegistry) {
economyRegistry.registerEconomyHandler(new NativeEconomy(), GrandEconomy.MODID);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy