Files
BlenderSharp/BlendFile/DNA/LayerCollection.cs
2025-01-22 20:24:55 +01:00

51 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;
public class LayerCollection {
[DNAFieldAttribute(0, "LayerCollection", "*next", 64)]
public LayerCollection ptr_next;
[DNAFieldAttribute(1, "LayerCollection", "*prev", 64)]
public LayerCollection ptr_prev;
[DNAFieldAttribute(2, "Collection", "*collection", 376)]
public Collection ptr_collection;
[DNAFieldAttribute(3, "void", "*_pad1", 0)]
public object ptr__pad1;
[DNAFieldAttribute(4, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(5, "short", "runtime_flag", 2)]
public short runtime_flag;
[DNAFieldAttribute(6, "char", "_pad[4]", 1)]
public char[] _pad = new System.Char[4];
[DNAFieldAttribute(7, "ListBase", "layer_collections", 16)]
public ListBase layer_collections;
[DNAFieldAttribute(8, "short", "local_collections_bits", 2)]
public short local_collections_bits;
[DNAFieldAttribute(9, "short", "_pad2[3]", 2)]
public short[] _pad2 = new System.Int16[3];
public LayerCollection(LayerCollection ptr_next, LayerCollection ptr_prev, Collection ptr_collection, object ptr__pad1, short flag, short runtime_flag, char[] _pad, ListBase layer_collections, short local_collections_bits, short[] _pad2) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_collection = ptr_collection;
this.ptr__pad1 = ptr__pad1;
this.flag = flag;
this.runtime_flag = runtime_flag;
this._pad = _pad;
this.layer_collections = layer_collections;
this.local_collections_bits = local_collections_bits;
this._pad2 = _pad2;
}
}
}