Files
BlenderSharp/BlendFile/DNA/IDOverrideLibraryPropertyOperation.cs

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