//------------------------------------------------------------------------------ // // 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")] public class IdAdtTemplate { [DNAFieldAttribute(0, "ID", "id", "ID", 208, false)] public ID id; [DNAFieldAttribute(1, "AnimData", "*adt", "AnimData", 4, true)] public AnimData ptr_adt; public IdAdtTemplate() { this.id = default; this.ptr_adt = default; } public IdAdtTemplate(ID id, AnimData ptr_adt) { this.id = id; this.ptr_adt = ptr_adt; } } }