Skip to content
Ryder Belserion edited this page Jun 23, 2025 · 3 revisions

Create an addon using our built in addon library!

Creating an addon using Fusion's addon module is super duper easy! You only need a few things to get going.

Gradle Dependencies

repositories {
   maven("https://repo.crazycrew.us/releases/")
}

dependencies {
   implementation("com.ryderbelserion.fusion", "fusion-addons", "0.1.0")
}

Example

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.MobAddon

name is the name of the addon, which when getName() is called. It will return that. main is the entry point of the addon.

Clone this wiki locally