Files
BlenderSharp/BlendFile/DNA/IDOverrideLibraryProperty.cs
2025-03-04 18:48:04 +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", 48)]
public class IDOverrideLibraryProperty {
[DNAFieldAttribute(8, "IDOverrideLibraryProperty", 0, "*next", "IDOverrideLibraryProperty", true, 0)]
public IDOverrideLibraryProperty next;
[DNAFieldAttribute(8, "IDOverrideLibraryProperty", 1, "*prev", "IDOverrideLibraryProperty", true, 8)]
public IDOverrideLibraryProperty prev;
[DNAFieldAttribute(8, "char", 2, "*rna_path", "char", true, 16)]
public char rna_path;
[DNAFieldAttribute(16, "ListBase", 3, "operations", "ListBase", false, 24)]
public ListBase operations;
[DNAFieldAttribute(2, "short", 4, "tag", "short", false, 40)]
public short tag;
[DNAFieldAttribute(2, "char", 5, "_pad[2]", "System.Char[]", false, 42)]
public char[] _pad = new System.Char[2];
[DNAFieldAttribute(4, "int", 6, "rna_prop_type", "int", false, 44)]
public int rna_prop_type;
public IDOverrideLibraryProperty() {
this.next = default;
this.prev = default;
this.rna_path = default;
this.operations = default;
this.tag = default;
this._pad = default;
this.rna_prop_type = default;
}
public IDOverrideLibraryProperty(IDOverrideLibraryProperty next, IDOverrideLibraryProperty prev, char rna_path, ListBase operations, short tag, char[] _pad, int rna_prop_type) {
this.next = next;
this.prev = prev;
this.rna_path = rna_path;
this.operations = operations;
this.tag = tag;
this._pad = _pad;
this.rna_prop_type = rna_prop_type;
}
}
}