Replaced in the notifications Card with BonusCard

This commit is contained in:
Hanno Fleischer
2024-11-14 19:58:26 +01:00
parent 37511d6334
commit ee59807395
2 changed files with 4 additions and 4 deletions

View File

@@ -1,10 +1,10 @@
package pp.mdga.notification; package pp.mdga.notification;
import pp.mdga.game.Card; import pp.mdga.game.BonusCard;
import pp.mdga.game.Color; import pp.mdga.game.Color;
public class DrawCardNotification extends Notification { public class DrawCardNotification extends Notification {
DrawCardNotification(Color color, Card card) { DrawCardNotification(Color color, BonusCard card) {
} }
} }

View File

@@ -1,10 +1,10 @@
package pp.mdga.notification; package pp.mdga.notification;
import pp.mdga.game.Card; import pp.mdga.game.BonusCard;
import pp.mdga.game.Color; import pp.mdga.game.Color;
public class PlayCardNotification extends Notification { public class PlayCardNotification extends Notification {
PlayCardNotification(Color color, Card card) { PlayCardNotification(Color color, BonusCard card) {
} }
} }