Files
BlenderSharp/BlendFile/DNA/IdAdtTemplate.cs
2025-02-18 18:16:57 +01:00

32 lines
928 B
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(102, "IdAdtTemplate")]
public class IdAdtTemplate {
[DNAFieldAttribute(0, "ID", "id", "ID", 208)]
public ID id;
[DNAFieldAttribute(1, "AnimData", "*adt", "AnimData", 248)]
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;
}
}
}