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

36 lines
1.3 KiB
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(109, "BoneCollectionReference", 24)]
public class BoneCollectionReference {
[DNAFieldAttribute(8, "BoneCollectionReference", 0, "*next", "BoneCollectionReference", true, 0)]
public BoneCollectionReference next;
[DNAFieldAttribute(8, "BoneCollectionReference", 1, "*prev", "BoneCollectionReference", true, 8)]
public BoneCollectionReference prev;
[DNAFieldAttribute(8, "BoneCollection", 2, "*bcoll", "BoneCollection", true, 16)]
public BoneCollection bcoll;
public BoneCollectionReference() {
this.next = default;
this.prev = default;
this.bcoll = default;
}
public BoneCollectionReference(BoneCollectionReference next, BoneCollectionReference prev, BoneCollection bcoll) {
this.next = next;
this.prev = prev;
this.bcoll = bcoll;
}
}
}