Testmerge #5
@@ -1,7 +1,10 @@
|
||||
package pp.mdga.client.Animation;
|
||||
|
||||
abstract class Animation {
|
||||
|
||||
abstract void play();
|
||||
|
||||
abstract void stop();
|
||||
|
||||
abstract boolean isOver();
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@ public class ActivePlayerNotification extends Notification {
|
||||
* The color of the active player
|
||||
*/
|
||||
private Color color;
|
||||
|
||||
ActivePlayerNotification(Color color) {
|
||||
this.color = color;
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
import pp.mdga.game.BonusCard;
|
||||
import pp.mdga.game.Color;
|
||||
|
||||
/**
|
||||
* Notification that a card has been drawn
|
||||
*/
|
||||
|
||||
@@ -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;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user