Files
BlenderSharp/BlendFile/DNA/IDOverrideLibraryProperty.cs
2025-01-22 02:23:29 +01:00

23 lines
909 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
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;
}
}
}