Merge work #7

Merged
fkoppe merged 31 commits from dev/client_koppe into dev/client 2024-11-20 13:50:01 +01:00
4 changed files with 7 additions and 0 deletions
Showing only changes of commit a926554709 - Show all commits

View File

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

View File

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

View File

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

View File

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