Пример #1
0
 void Start()
 {
     // Selects the first unit at the begining so a unit is always selected.
     _playerParty.AddCommand(new SelectCmd(new List <Unit>()
     {
         _playerParty.Units[0]
     }));
     // Assign the first available formation to the player party.
     ChangePlayerPartyFormation(0);
 }