/* * @Author: 白哉 * @Description: 技能拥有者 * @Date: 2025年04月23日 星期三 21:04:34 * @Modify: */ using System.Collections.Generic; namespace Logic.Skill { public class SkillOwner { public List Skills; public SkillOwner() { Skills = new List(); } } }