summaryrefslogtreecommitdiff
path: root/player/PlayerActionHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'player/PlayerActionHandler.java')
-rw-r--r--player/PlayerActionHandler.java23
1 files changed, 3 insertions, 20 deletions
diff --git a/player/PlayerActionHandler.java b/player/PlayerActionHandler.java
index 05a042c..26ba7e3 100644
--- a/player/PlayerActionHandler.java
+++ b/player/PlayerActionHandler.java
@@ -6,24 +6,7 @@ import mahjong.engine.Action;
/**
* Created by joe on 12/4/14.
*/
-public abstract class PlayerActionHandler {
- public Hand hand=new Hand();
- int score;
-
- protected String name;
-
- public String getName() {
- return name;
- }
-
- public abstract Action stateAlert(Action action);
- public abstract void stateUpdate(Action action);
-
- public void setScore(int score) {
- this.score = score;
- }
-
- public int getScore() {
- return score;
- }
+public interface PlayerActionHandler {
+ public abstract Action stateAlert(Action action); // Player action required or not, state will not change
+ public abstract void stateUpdate(Action action); // Player action taken, changing state.
}