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 a1e687912a - Show all commits

View File

@@ -20,4 +20,13 @@ public TurnAutomatonState(TurnState turnAutomaton, ServerGameLogic logic) {
super(logic);
this.turnAutomaton = turnAutomaton;
}
/**
* This method will be used to return turnAutomaton attribute of TurnAutomatonState object.
*
* @return turnAutomaton as a TurnState object
*/
public TurnState getTurnAutomaton() {
return this.turnAutomaton;
}
}