* Goes to the next soldier. * @param action Pointer to an action. */
| 632 | * @param action Pointer to an action. |
| 633 | */ |
| 634 | void SoldierInfoState::btnNextClick(Action *) |
| 635 | { |
| 636 | _soldierId++; |
| 637 | if (_soldierId >= _list->size()) |
| 638 | _soldierId = 0; |
| 639 | init(); |
| 640 | } |
| 641 | |
| 642 | /** |
| 643 | * Shows the Select Armor window. |