package mahjong.engine; /** * Created by joe on 12/3/14. */ public class Action { // TODO Generic action // Requirement: printable,parseable,coverage // Coverage: System,player public enum Type {System,Player}; public enum Act {Info,CardDraw,CardPut,Aside}; Type type; public Type getType() { return type; } }