Files
BlenderSharp/BlendFile/DNA/IDOverrideLibraryPropertyOperation.cs
2025-03-12 19:02:40 +01:00

72 lines
3.5 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(26, "IDOverrideLibraryPropertyOperation", 64)]
public class IDOverrideLibraryPropertyOperation {
[DNAFieldAttribute(8, "IDOverrideLibraryPropertyOperation", 0, "*next", "IDOverrideLibraryPropertyOperation", true, 0)]
public IDOverrideLibraryPropertyOperation next;
[DNAFieldAttribute(8, "IDOverrideLibraryPropertyOperation", 1, "*prev", "IDOverrideLibraryPropertyOperation", true, 8)]
public IDOverrideLibraryPropertyOperation prev;
[DNAFieldAttribute(2, "short", 2, "operation", "short", false, 16)]
public short operation;
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 18)]
public short flag;
[DNAFieldAttribute(2, "short", 4, "tag", "short", false, 20)]
public short tag;
[DNAArrayAttribute(2, "char", 5, "_pad0[2]", "System.Char[]", 2, false, 22)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(8, "char", 6, "*subitem_reference_name", "char", true, 24)]
public char subitem_reference_name;
[DNAFieldAttribute(8, "char", 7, "*subitem_local_name", "char", true, 32)]
public char subitem_local_name;
[DNAFieldAttribute(4, "int", 8, "subitem_reference_index", "int", false, 40)]
public int subitem_reference_index;
[DNAFieldAttribute(4, "int", 9, "subitem_local_index", "int", false, 44)]
public int subitem_local_index;
[DNAFieldAttribute(8, "ID", 10, "*subitem_reference_id", "ID", true, 48)]
public ID subitem_reference_id;
[DNAFieldAttribute(8, "ID", 11, "*subitem_local_id", "ID", true, 56)]
public ID subitem_local_id;
public IDOverrideLibraryPropertyOperation() {
this.next = default;
this.prev = default;
this.operation = default;
this.flag = default;
this.tag = default;
this._pad0 = default;
this.subitem_reference_name = default;
this.subitem_local_name = default;
this.subitem_reference_index = default;
this.subitem_local_index = default;
this.subitem_reference_id = default;
this.subitem_local_id = default;
}
public IDOverrideLibraryPropertyOperation(IDOverrideLibraryPropertyOperation next, IDOverrideLibraryPropertyOperation prev, short operation, short flag, short tag, char[] _pad0, char subitem_reference_name, char subitem_local_name, int subitem_reference_index, int subitem_local_index, ID subitem_reference_id, ID subitem_local_id) {
this.next = next;
this.prev = prev;
this.operation = operation;
this.flag = flag;
this.tag = tag;
this._pad0 = _pad0;
this.subitem_reference_name = subitem_reference_name;
this.subitem_local_name = subitem_local_name;
this.subitem_reference_index = subitem_reference_index;
this.subitem_local_index = subitem_local_index;
this.subitem_reference_id = subitem_reference_id;
this.subitem_local_id = subitem_local_id;
}
}
}