EpicBosses/plugin-modules/Core/src/com/songoda/epicbosses/listeners/IBossDeathHandler.java
Charles 3744dbf0cd 1.0.0-SNAPSHOT-U171
+ Added IBossDeathHandler to add custom handlers for AutoSpawn
+ Modified AutoSpawnSettings to have a new method shuffleEntitiesList for when a boss is attempted to spawn
+ Modified IntervalSpawnElement to have a new method spawnAfterLastBossIsKilled
+ Added implementation of IBossDeathHandler into BossDeathListener
2019-01-03 22:58:21 +08:00

15 lines
259 B
Java

package com.songoda.epicbosses.listeners;
import com.songoda.epicbosses.events.PreBossDeathEvent;
/**
* @author Charles Cullen
* @version 1.0.0
* @since 03-Jan-19
*/
public interface IBossDeathHandler {
void onPreDeath(PreBossDeathEvent event);
}