merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
50 changed files with 1680 additions and 410 deletions
Showing only changes of commit 0db1f08f3c - Show all commits

View File

@@ -23,4 +23,13 @@ public GameAutomatonState(GameState gameAutomaton, ServerGameLogic logic) {
super(logic);
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;
}
}