C#C
C#3y ago
Theos

❔ Adjust lists

Hey, so I have
enum AIType { heor, courier, scout }


class Unit
{
  public AIType aiType;
}


class Player
{
  List<Unit> units;
}


class Settings
{
  List<AIType> neededUnits;
}
Was this page helpful?