summaryrefslogtreecommitdiff
path: root/player/GenericPlayer.java
diff options
context:
space:
mode:
Diffstat (limited to 'player/GenericPlayer.java')
-rw-r--r--player/GenericPlayer.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/player/GenericPlayer.java b/player/GenericPlayer.java
index 23cea93..f1a9755 100644
--- a/player/GenericPlayer.java
+++ b/player/GenericPlayer.java
@@ -1,7 +1,7 @@
package mahjong.player;
import mahjong.aux.Card;
-import mahjong.aux.set.Aside;
+import mahjong.aux.set.Meld;
import mahjong.aux.set.Hand;
import mahjong.aux.set.Set;
import mahjong.engine.Action;
@@ -22,7 +22,9 @@ public abstract class GenericPlayer {
}
public abstract Action stateAlert(Action action);
- public abstract void stateUpdate(Action action);
+ public void stateUpdate(Action action)
+ {
+ }
public void setScore(int score) {
this.score = score;