Hello!
I have A list Called Teams with a type of “TeamSetupDefinition” ;
public List<TeamSetupDefinition> Teams = new List<TeamSetupDefinition>();
TeamSetupDefinition contains
public int Team;
public Color AccsentColor;
public bool IsAi;
public List<Player> Players Team;
I would like to compare the “PlayersInTeam” length against one another, but can’t figure out how to do that.
I’m still relatively new to coding any help would be much appreciated, sorry if my english is hard to read or understand.