using System.Collections.Generic;
namespace Gameplay.Character
{
public class Troops
public int troopsId;
public readonly List<Character> characters;
public Troops(int troopsId)
this.troopsId = troopsId;
characters = new List<Character>();
}