adjusted for check style
This commit is contained in:
@@ -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();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user