- a client state machine consits out of a 'ClientState' (every state of the machine) and a 'ClientStateMachine' (every state, which consists out of states), the machine starts with the ClientAutomaton - analog for server - started to implement logic for the server, transition from 'Lobby' to 'GameState'
8 lines
174 B
Java
8 lines
174 B
Java
package pp.mdga.server;
|
|
|
|
public class FirstRoll extends ServerState {
|
|
public FirstRoll(ServerState parent, ServerGameLogic logic) {
|
|
super(parent, logic);
|
|
}
|
|
}
|