Files
BlenderSharp/BlendFile/DNA/IdAdtTemplate.cs
2025-03-04 18:48:04 +01:00

32 lines
932 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", 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;
}
}
}