using System.Collections.Generic; namespace BetterGenshinImpact.GameTask.AutoFight.Script; public class CombatScript(HashSet avatarNames, List combatCommands) { public string Name { get; set; } = string.Empty; public string Path { get; set; } = string.Empty; public HashSet AvatarNames { get; set; } = avatarNames; public List CombatCommands { get; set; } = combatCommands; /// /// 用于记录和队伍角色匹配到的数量 /// public int MatchCount { get; set; } = 0; }