Exemple #1
0
 private void setNewTurn()
 {
     if (currentUnitTurn != null)
     {
         currentUnitTurn = null;
     }
     currentUnitTurn = new RSUnitTurnModel();
 }
Exemple #2
0
 private void onActionsChosen(RSUnitTurnModel chosenActions)
 {
     encounterModel.saveTurn(chosenActions);
 }
Exemple #3
0
 public void saveTurn(RSUnitTurnModel turnModel)
 {
     turns.Enqueue(turnModel);
 }