Files
BlenderSharp/BlendFile/DNA/IDOverrideLibraryProperty.cs

36 lines
1.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 BlendFile.CompatTypes;
using System;
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
namespace BlendFile.DNA {
public class IDOverrideLibraryProperty {
public IDOverrideLibraryProperty ptr_next;
public IDOverrideLibraryProperty ptr_prev;
public char ptr_rna_path;
public ListBase operations;
public short tag;
public char[] _pad = new System.Char[2];
public int rna_prop_type;
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;
}
}
}