-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ian Tapply
authored
Jun 7, 2024
1 parent
184d3a0
commit a7ce131
Showing
15 changed files
with
200 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/java/net/jeqo/bloons/events/balloon/SingleBalloonEquipEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package net.jeqo.bloons.events.balloon; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import net.jeqo.bloons.events.BloonsEvent; | ||
import org.bukkit.entity.Player; | ||
|
||
@Getter @Setter | ||
public class SingleBalloonEquipEvent extends BloonsEvent { | ||
private Player player; | ||
private String balloonID; | ||
|
||
public SingleBalloonEquipEvent(Player player, String balloonID) { | ||
this.player = player; | ||
this.balloonID = balloonID; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/java/net/jeqo/bloons/events/balloon/SingleBalloonForceEquipEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package net.jeqo.bloons.events.balloon; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import net.jeqo.bloons.events.BloonsEvent; | ||
import org.bukkit.entity.Player; | ||
|
||
@Getter @Setter | ||
public class SingleBalloonForceEquipEvent extends BloonsEvent { | ||
private Player player; | ||
private String balloonID; | ||
|
||
public SingleBalloonForceEquipEvent(Player player, String balloonID) { | ||
this.player = player; | ||
this.balloonID = balloonID; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/net/jeqo/bloons/events/balloon/SingleBalloonForceUnequipEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package net.jeqo.bloons.events.balloon; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import net.jeqo.bloons.balloon.SingleBalloon; | ||
import net.jeqo.bloons.events.BloonsEvent; | ||
import org.bukkit.entity.Player; | ||
|
||
@Getter @Setter | ||
public class SingleBalloonForceUnequipEvent extends BloonsEvent { | ||
private Player player; | ||
private SingleBalloon balloon; | ||
|
||
public SingleBalloonForceUnequipEvent(Player player, SingleBalloon balloon) { | ||
this.player = player; | ||
this.balloon = balloon; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/net/jeqo/bloons/events/balloon/SingleBalloonStoreEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package net.jeqo.bloons.events.balloon; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import net.jeqo.bloons.balloon.SingleBalloon; | ||
import net.jeqo.bloons.events.BloonsEvent; | ||
import org.bukkit.entity.Player; | ||
|
||
@Getter @Setter | ||
public class SingleBalloonStoreEvent extends BloonsEvent { | ||
private Player player; | ||
private SingleBalloon balloon; | ||
|
||
public SingleBalloonStoreEvent(Player player, SingleBalloon balloon) { | ||
this.player = player; | ||
this.balloon = balloon; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/net/jeqo/bloons/events/balloon/SingleBalloonUnequipEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package net.jeqo.bloons.events.balloon; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import net.jeqo.bloons.balloon.SingleBalloon; | ||
import net.jeqo.bloons.events.BloonsEvent; | ||
import org.bukkit.entity.Player; | ||
|
||
@Getter @Setter | ||
public class SingleBalloonUnequipEvent extends BloonsEvent { | ||
private Player player; | ||
private SingleBalloon balloon; | ||
|
||
public SingleBalloonUnequipEvent(Player player, SingleBalloon balloon) { | ||
this.player = player; | ||
this.balloon = balloon; | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/net/jeqo/bloons/events/balloon/general/BloonsConfigReloadEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package net.jeqo.bloons.events.balloon.general; | ||
|
||
import net.jeqo.bloons.events.BloonsEvent; | ||
|
||
public class BloonsConfigReloadEvent extends BloonsEvent { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters