Mineplex/GOD DAMN COSMETICS/gadget/gadgets/particle/king/events/UpdateKingEvent.java
Daniel Waggner 38a20f98c2 Removed Files
These two directories contain code that was removed from the src and dependencies of the compiled files. They were removed due to being either a. unnecessary or b. a royal pain in my booty.
2021-05-23 18:13:37 -07:00

44 lines
702 B
Java

package mineplex.core.gadget.gadgets.particle.king.events;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
import mineplex.core.gadget.gadgets.particle.king.types.King;
public class UpdateKingEvent extends Event
{
private static final HandlerList handlers = new HandlerList();
private King _newKing;
private King _oldKing;
public UpdateKingEvent(King newKing, King oldKing)
{
_newKing = newKing;
_oldKing = oldKing;
}
public King getNewKing()
{
return _newKing;
}
public King getOldKing()
{
return _oldKing;
}
@Override
public HandlerList getHandlers()
{
return handlers;
}
public static HandlerList getHandlerList()
{
return handlers;
}
}