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

42 lines
1.6 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;
public class IDOverrideLibraryProperty {
[DNAFieldAttribute(0, "IDOverrideLibraryProperty", "*next", 48)]
public IDOverrideLibraryProperty ptr_next;
[DNAFieldAttribute(1, "IDOverrideLibraryProperty", "*prev", 48)]
public IDOverrideLibraryProperty ptr_prev;
[DNAFieldAttribute(2, "char", "*rna_path", 1)]
public char ptr_rna_path;
[DNAFieldAttribute(3, "ListBase", "operations", 16)]
public ListBase operations;
[DNAFieldAttribute(4, "short", "tag", 2)]
public short tag;
[DNAFieldAttribute(5, "char", "_pad[2]", 1)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(6, "int", "rna_prop_type", 4)]
public int rna_prop_type;
public IDOverrideLibraryProperty(IDOverrideLibraryProperty ptr_next, IDOverrideLibraryProperty ptr_prev, char ptr_rna_path, ListBase operations, short tag, char[] _pad, int rna_prop_type) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_rna_path = ptr_rna_path;
this.operations = operations;
this.tag = tag;
this._pad = _pad;
this.rna_prop_type = rna_prop_type;
}
}
}