Add notification constructors

This commit is contained in:
Felix
2024-11-14 19:33:03 +01:00
parent 5693817f9b
commit 6c7b58b415
11 changed files with 71 additions and 9 deletions

View File

@@ -1,4 +1,9 @@
package pp.mdga.notification;
public class InterruptNotification {
import pp.mdga.game.Color;
public class InterruptNotification extends Notification {
InterruptNotification(Color color) {
}
}