package mahjong.player; import mahjong.aux.set.Hand; 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; } }