mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
16 lines
408 B
C#
16 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace RimWorldAnimationStudio
|
|
{
|
|
[XmlRoot("Defs", IsNullable = false)]
|
|
public class AnimationDefs
|
|
{
|
|
[XmlElement("Rimworld_Animations.AnimationDef")]
|
|
public List<AnimationDef> animationDefs = new List<AnimationDef>();
|
|
}
|
|
}
|