Add notification constructors

This commit is contained in:
Felix
2024-11-14 19:33:03 +01:00
parent 5693817f9b
commit 6c7b58b415
11 changed files with 71 additions and 9 deletions

View File

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