added skybox; reworked guiHandler

This commit is contained in:
Cedric Beck
2024-11-29 21:28:50 +01:00
parent 220d8ff47e
commit 13690cf73d
14 changed files with 558 additions and 257 deletions

View File

@@ -9,24 +9,14 @@
*/
public class AcquireCardNotification extends Notification{
private UUID cardId;
private BonusCard bonusCard;
/**
* Constructor.
* @param cardId The id of the card that was acquired.
* @param bonusCard The type of the card that was acquired.
*/
public AcquireCardNotification(BonusCard bonusCard, UUID cardId) {
public AcquireCardNotification(BonusCard bonusCard) {
this.bonusCard = bonusCard;
this.cardId = cardId;
}
/**
* Get the id of the card that was acquired.
* @return The id of the card that was acquired.
*/
public UUID getCardId() {
return cardId;
}
public BonusCard getBonusCard() {