blob: dcec1a2ffd87a9faabca66d156caa016f9997fc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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;
}
}
|