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