using System.Collections.Generic; using System.Xml; using System.Xml.Serialization; namespace RimWorldAnimationStudio { [XmlRoot("Defs", IsNullable = false)] public class Defs { [XmlElement("Rimworld_Animations.AnimationDef")] public List animationDefs = new List(); } }