Files
BlenderSharp/BlendFile/DNA/IDOverrideLibraryPropertyOperation.cs

72 lines
3.3 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")]
public class IDOverrideLibraryPropertyOperation {
[DNAFieldAttribute(0, "IDOverrideLibraryPropertyOperation", "*next", 64)]
public IDOverrideLibraryPropertyOperation ptr_next;
[DNAFieldAttribute(1, "IDOverrideLibraryPropertyOperation", "*prev", 64)]
public IDOverrideLibraryPropertyOperation ptr_prev;
[DNAFieldAttribute(2, "short", "operation", 2)]
public short operation;
[DNAFieldAttribute(3, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(4, "short", "tag", 2)]
public short tag;
[DNAFieldAttribute(5, "char", "_pad0[2]", 1)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(6, "char", "*subitem_reference_name", 1)]
public char ptr_subitem_reference_name;
[DNAFieldAttribute(7, "char", "*subitem_local_name", 1)]
public char ptr_subitem_local_name;
[DNAFieldAttribute(8, "int", "subitem_reference_index", 4)]
public int subitem_reference_index;
[DNAFieldAttribute(9, "int", "subitem_local_index", 4)]
public int subitem_local_index;
[DNAFieldAttribute(10, "ID", "*subitem_reference_id", 208)]
public ID ptr_subitem_reference_id;
[DNAFieldAttribute(11, "ID", "*subitem_local_id", 208)]
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;
}
}
}