Files
BlenderSharp/BlendFile/DNA/Collection_Runtime.cs
2025-02-18 18:16:57 +01:00

48 lines
1.9 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(162, "Collection_Runtime")]
public class Collection_Runtime {
[DNAFieldAttribute(0, "ListBase", "object_cache", "ListBase", 16)]
public ListBase object_cache;
[DNAFieldAttribute(1, "ListBase", "object_cache_instanced", "ListBase", 16)]
public ListBase object_cache_instanced;
[DNAFieldAttribute(2, "ListBase", "parents", "ListBase", 16)]
public ListBase parents;
[DNAFieldAttribute(3, "GHash", "*gobject_hash", "GHash", 0)]
public GHash ptr_gobject_hash;
[DNAFieldAttribute(4, "uchar", "tag", "uchar", 1)]
public byte tag;
[DNAFieldAttribute(5, "char", "_pad0[7]", "System.Char[]", 1)]
public char[] _pad0 = new System.Char[7];
public Collection_Runtime() {
this.object_cache = default;
this.object_cache_instanced = default;
this.parents = default;
this.ptr_gobject_hash = default;
this.tag = default;
this._pad0 = default;
}
public Collection_Runtime(ListBase object_cache, ListBase object_cache_instanced, ListBase parents, GHash ptr_gobject_hash, byte tag, char[] _pad0) {
this.object_cache = object_cache;
this.object_cache_instanced = object_cache_instanced;
this.parents = parents;
this.ptr_gobject_hash = ptr_gobject_hash;
this.tag = tag;
this._pad0 = _pad0;
}
}
}