52 lines
2.0 KiB
C#
52 lines
2.0 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")]
|
|
public class IDOverrideLibrary {
|
|
[DNAFieldAttribute(0, "ID", "*reference", 208)]
|
|
public ID ptr_reference;
|
|
[DNAFieldAttribute(1, "ListBase", "properties", 16)]
|
|
public ListBase properties;
|
|
[DNAFieldAttribute(2, "ID", "*hierarchy_root", 208)]
|
|
public ID ptr_hierarchy_root;
|
|
[DNAFieldAttribute(3, "ID", "*storage", 208)]
|
|
public ID ptr_storage;
|
|
[DNAFieldAttribute(4, "IDOverrideLibraryRuntime", "*runtime", 0)]
|
|
public IDOverrideLibraryRuntime ptr_runtime;
|
|
[DNAFieldAttribute(5, "int", "flag", 4)]
|
|
public int flag;
|
|
[DNAFieldAttribute(6, "char", "_pad_1[4]", 1)]
|
|
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;
|
|
}
|
|
}
|
|
}
|