//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(102, "IdAdtTemplate", 216)] public class IdAdtTemplate { [DNAFieldAttribute(208, "ID", 0, "id", "ID", false, 0)] public ID id; [DNAFieldAttribute(8, "AnimData", 1, "*adt", "AnimData", true, 208)] public AnimData adt; public IdAdtTemplate() { this.id = default; this.adt = default; } public IdAdtTemplate(ID id, AnimData adt) { this.id = id; this.adt = adt; } } }