Files
BlenderSharp/BlendFile/DNA/IDOverrideLibrary.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 01/22/2025 16:57:57
namespace BlendFile.DNA {
public class IDOverrideLibrary {
public ID ptr_reference;
public ListBase properties;
public ID ptr_hierarchy_root;
public ID ptr_storage;
public IDOverrideLibraryRuntime ptr_runtime;
public int flag;
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;
}
}
}