-
-
Notifications
You must be signed in to change notification settings - Fork 1
Addons
Ryder Belserion edited this page Jun 23, 2025
·
3 revisions
Creating an addon using Fusion's addon module is super duper easy! You only need a few things to get going.
repositories {
maven("https://repo.crazycrew.us/releases/")
}
dependencies {
implementation("com.ryderbelserion.fusion", "fusion-addons", "0.1.0")
}public class MobAddon extends IAddon {
@Override
public void onEnable() {
}
@Override
public void onDisable() {
}
}You need a file called addon.properties in the src/main/resource directory containing crucial pieces of information.
name=Fusion-Mob-Addon
main=com.ryderbelserion.fusion.mobs.MobAddonname is the name of the addon, which when getName() is called. It will return that.
main is the entry point of the addon.