merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
Showing only changes of commit 0db1f08f3c - Show all commits

View File

@@ -23,4 +23,13 @@ public GameAutomatonState(GameState gameAutomaton, ServerGameLogic logic) {
super(logic); super(logic);
this.gameAutomaton = gameAutomaton; this.gameAutomaton = gameAutomaton;
} }
/**
* This method will be used to return gameAutomaton attribute of GameAutomatonState object.
*
* @return gameAutomaton as a GameState object.
*/
public GameState getGameAutomaton() {
return this.gameAutomaton;
}
} }