Files
BlenderSharp/BlendFile/DNA/IdAdtTemplate.cs
2025-01-22 20:24:55 +01:00

27 lines
754 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;
public class IdAdtTemplate {
[DNAFieldAttribute(0, "ID", "id", 208)]
public ID id;
[DNAFieldAttribute(1, "AnimData", "*adt", 248)]
public AnimData ptr_adt;
public IdAdtTemplate(ID id, AnimData ptr_adt) {
this.id = id;
this.ptr_adt = ptr_adt;
}
}
}