Add notifications

This commit is contained in:
Felix Koppe
2024-11-14 17:56:43 +01:00
parent 94ee786dc8
commit 5693817f9b
12 changed files with 43 additions and 9 deletions

View File

@@ -1,4 +0,0 @@
package pp.mdga.effect;
public interface Effect {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public class ActivePlayerNotification {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public class DrawCardNotification {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public class InterruptNotification {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public class MovePieceNotification {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public interface Notification {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public class PlayCardNotification {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public class ResumeNotification {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public class RollDiceNotification {
}

View File

@@ -0,0 +1,4 @@
package pp.mdga.notification;
public class SwapPieceNotification {
}