fixed bad performancegit status!; edited GameNotification; fixed error because of changed 'Color' enum

This commit is contained in:
Cedric Beck
2024-12-01 17:03:09 +01:00
parent 772c7a51e0
commit eb703cbd2c
12 changed files with 40 additions and 49 deletions

View File

@@ -1,12 +1,22 @@
package pp.mdga.notification;
import pp.mdga.game.Color;
/**
* GameNotification class
*/
public class GameNotification extends Notification{
private final Color ownColor;
/**
* Constructor
*/
public GameNotification() {
public GameNotification(Color ownColor) {
this.ownColor = ownColor;
}
public Color getOwnColor() {
return ownColor;
}
}