using System.Collections.Generic; namespace CMSGame { public class BattleParty { public bool IsAttacker; public bool IsDefender; public bool IsPlayerParty; public List Characters = new(); } }