API Reference
Decay Zone provides basic hooks for developers to interact with the decay system.
Developer Integration
You can access the DecayZone instance via Bukkit's plugin manager:
DecayZone plugin = (DecayZone) Bukkit.getPluginManager().getPlugin("DecayZone");
if (plugin != null) {
ZoneManager zoneManager = plugin.getZoneManager();
// Access zone information
}
Available Managers
ZoneManager: Manage and query decay zones.DecayBlockManager: Track active block timers.SelectionManager: Access player selection data.ParticleManager: Handle visual boundary rendering.
[!NOTE] More comprehensive API documentation will be added in future updates.