Files
BlenderSharp/BlendFile/DNA/IDOverrideLibrary.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

43 lines
1.6 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(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;
}
}
}