52 lines
2.2 KiB
C#
52 lines
2.2 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(0, "IDOverrideLibraryProperty", "*next", "IDOverrideLibraryProperty", 8, true, 0)]
|
|
public IDOverrideLibraryProperty ptr_next;
|
|
[DNAFieldAttribute(1, "IDOverrideLibraryProperty", "*prev", "IDOverrideLibraryProperty", 8, true, 8)]
|
|
public IDOverrideLibraryProperty ptr_prev;
|
|
[DNAFieldAttribute(2, "char", "*rna_path", "char", 8, true, 16)]
|
|
public char ptr_rna_path;
|
|
[DNAFieldAttribute(3, "ListBase", "operations", "ListBase", 16, false, 24)]
|
|
public ListBase operations;
|
|
[DNAFieldAttribute(4, "short", "tag", "short", 2, false, 40)]
|
|
public short tag;
|
|
[DNAFieldAttribute(5, "char", "_pad[2]", "System.Char[]", 2, false, 42)]
|
|
public char[] _pad = new System.Char[2];
|
|
[DNAFieldAttribute(6, "int", "rna_prop_type", "int", 4, false, 44)]
|
|
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;
|
|
}
|
|
}
|
|
}
|