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

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