Mineplex/GOD DAMN COSMETICS/gadget/event/PlayerUseCoalEvent.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

50 lines
811 B
Java

package mineplex.core.gadget.event;
import org.bukkit.entity.Player;
import org.bukkit.event.HandlerList;
import org.bukkit.event.player.PlayerEvent;
import mineplex.core.gadget.types.Gadget;
public class PlayerUseCoalEvent extends PlayerEvent
{
private static final HandlerList handlers = new HandlerList();
private final CoalReward _prize;
private final int _cost;
public PlayerUseCoalEvent(Player player, CoalReward reward, int cost)
{
super(player);
this._prize = reward;
this._cost = cost;
}
public CoalReward getPrize()
{
return this._prize;
}
public int getCost()
{
return this._cost;
}
public HandlerList getHandlers()
{
return handlers;
}
public static HandlerList getHandlerList()
{
return handlers;
}
public enum CoalReward
{
HAT,
PET,
PARTICLE
}
}