fixed error with SelectObjectOutliner

This commit is contained in:
Cedric Beck
2024-12-01 17:47:04 +01:00
parent b099972656
commit 2732a89da6
7 changed files with 60 additions and 43 deletions

View File

@@ -9,24 +9,13 @@
*/
public class AcquireCardNotification extends Notification{
private UUID cardId;
private BonusCard bonusCard;
/**
* Constructor.
* @param cardId The id 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() {