blob: 09d241795a9f42c595cffc4559bbbf53fa52ca6d (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
package mahjong.player;
import mahjong.aux.set.Hand;
import mahjong.engine.Action;
/**
* Created by joe on 12/4/14.
*/
// TODO Hard to manage relations
public class PlayerActionServer implements PlayerActionHandler {
Hand hand=new Hand();
int score;
protected String name;
PlayerActionHandler player;
PlayerActionServer(PlayerActionHandler player)
{
this.player=player;
}
public String getName() {
return name;
}
public Action stateAlert(Action action)
{
return null;
}
public void stateUpdate(Action action)
{
}
public int getScore() {
return score;
}
}
|