Files
BlenderSharp/BlendFile/DNA/IDOverrideLibrary.cs
2025-02-19 18:48:50 +01:00

52 lines
2.1 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(29, "IDOverrideLibrary", 56)]
public class IDOverrideLibrary {
[DNAFieldAttribute(0, "ID", "*reference", "ID", 8, true)]
public ID ptr_reference;
[DNAFieldAttribute(1, "ListBase", "properties", "ListBase", 16, false)]
public ListBase properties;
[DNAFieldAttribute(2, "ID", "*hierarchy_root", "ID", 8, true)]
public ID ptr_hierarchy_root;
[DNAFieldAttribute(3, "ID", "*storage", "ID", 8, true)]
public ID ptr_storage;
[DNAFieldAttribute(4, "IDOverrideLibraryRuntime", "*runtime", "IDOverrideLibraryRuntime", 8, true)]
public IDOverrideLibraryRuntime ptr_runtime;
[DNAFieldAttribute(5, "int", "flag", "int", 4, false)]
public int flag;
[DNAFieldAttribute(6, "char", "_pad_1[4]", "System.Char[]", 4, false)]
public char[] _pad_1 = new System.Char[4];
public IDOverrideLibrary() {
this.ptr_reference = default;
this.properties = default;
this.ptr_hierarchy_root = default;
this.ptr_storage = default;
this.ptr_runtime = default;
this.flag = default;
this._pad_1 = default;
}
public IDOverrideLibrary(ID ptr_reference, ListBase properties, ID ptr_hierarchy_root, ID ptr_storage, IDOverrideLibraryRuntime ptr_runtime, int flag, char[] _pad_1) {
this.ptr_reference = ptr_reference;
this.properties = properties;
this.ptr_hierarchy_root = ptr_hierarchy_root;
this.ptr_storage = ptr_storage;
this.ptr_runtime = ptr_runtime;
this.flag = flag;
this._pad_1 = _pad_1;
}
}
}