rimworld-animation-studio/Assets/Scripts/AnimationComponents/Defs.cs

14 lines
335 B
C#
Raw Normal View History

2022-09-13 05:36:34 +00:00
using System.Collections.Generic;
using System.Xml;
using System.Xml.Serialization;
namespace RimWorldAnimationStudio
{
2022-09-14 05:25:58 +00:00
[XmlRoot("Defs", IsNullable = false)]
2022-09-13 05:36:34 +00:00
public class Defs
{
[XmlElement("Rimworld_Animations.AnimationDef")]
public List<AnimationDef> animationDefs = new List<AnimationDef>();
}
}