summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/game/State.java
blob: 114c68093c68432ea54b9a46e71eeb92dd55843b (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
package ch.asynk.rustanddust.game;

public interface State
{
    enum StateType {
        LOADING,
        SELECT,
        MOVE,
        ROTATE,
        ENGAGE,
        BREAK,
        PROMOTE,
        ANIMATION,
        REINFORCEMENT,
        DEPLOYMENT,
        WITHDRAW,
        ABORT,
        DONE,
        TURN_OVER
    };

    public void enter(StateType prevState);

    public void leave(StateType nextState);

    public StateType abort();

    public StateType execute();

    public void touch(Hex hex);
}