Files
BlenderSharp/BlendFile/DNA/IDOverrideLibraryPropertyOperation.cs
2025-01-22 17:40:14 +01:00

45 lines
1.9 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 BlendFile.CompatTypes;
using System;
namespace BlendFile.DNA {
public class IDOverrideLibraryPropertyOperation {
public IDOverrideLibraryPropertyOperation ptr_next;
public IDOverrideLibraryPropertyOperation ptr_prev;
public short operation;
public short flag;
public short tag;
public char[] _pad0 = new System.Char[2];
public char ptr_subitem_reference_name;
public char ptr_subitem_local_name;
public int subitem_reference_index;
public int subitem_local_index;
public ID ptr_subitem_reference_id;
public ID ptr_subitem_local_id;
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;
}
}
}