Skip to content

Commit

Permalink
Add documentation to CustomItemPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
esotericenderman committed Oct 30, 2024
1 parent 4759b9a commit 1521565
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ package foundation.esoteric.minecraft.plugins.library.item

import org.bukkit.plugin.Plugin

/**
* Represents a plugin that implements custom items.
*
* You must implement this interface if you wish to use custom items in your plugin.
*/
interface CustomItemPlugin : Plugin {
/**
* The custom item manager associated with this plugin.
*
* A plugin must implement CustomItemPlugin to use the custom item manager.
*/
val customItemManager: CustomItemManager
}

0 comments on commit 1521565

Please sign in to comment.