using System.Collections.Generic; namespace CMSGame { public abstract class Skill { public string Name = string.Empty; public List Effects = new(); } }