blob: f54490963ab87024abd9d5f07e9076970fe4b31f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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;
}
public Action(String str)
{
}
@Override
public String toString() {
return super.toString();
}
}
|