adjusted for check style

This commit is contained in:
Hanno Fleischer
2024-11-17 12:01:00 +01:00
parent 020aa92cab
commit a926554709
4 changed files with 7 additions and 0 deletions

View File

@@ -1,7 +1,10 @@
package pp.mdga.client.Animation;
abstract class Animation {
abstract void play();
abstract void stop();
abstract boolean isOver();
}

View File

@@ -11,6 +11,7 @@ public class ActivePlayerNotification extends Notification {
* The color of the active player
*/
private Color color;
ActivePlayerNotification(Color color) {
this.color = color;
}

View File

@@ -2,6 +2,7 @@
import pp.mdga.game.BonusCard;
import pp.mdga.game.Color;
/**
* Notification that a card has been drawn
*/

View File

@@ -1,10 +1,12 @@
package pp.mdga.notification;
import pp.mdga.game.Color;
/**
* Notification that a card has been drawn
*/
public class InterruptNotification extends Notification {
private Color color;
/**