Files
BlenderSharp/BlendFile/DNA/SpaceInfo.cs
2025-03-12 19:02:40 +01:00

56 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;
[DNAClassAttribute(926, "SpaceInfo", 48)]
public class SpaceInfo {
[DNAFieldAttribute(8, "SpaceLink", 0, "*next", "SpaceLink", true, 0)]
public SpaceLink next;
[DNAFieldAttribute(8, "SpaceLink", 1, "*prev", "SpaceLink", true, 8)]
public SpaceLink prev;
[DNAFieldAttribute(16, "ListBase", 2, "regionbase", "ListBase", false, 16)]
public ListBase regionbase;
[DNAFieldAttribute(1, "char", 3, "spacetype", "char", false, 32)]
public char spacetype;
[DNAFieldAttribute(1, "char", 4, "link_flag", "char", false, 33)]
public char link_flag;
[DNAArrayAttribute(6, "char", 5, "_pad0[6]", "System.Char[]", 6, false, 34)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(1, "char", 6, "rpt_mask", "char", false, 40)]
public char rpt_mask;
[DNAArrayAttribute(7, "char", 7, "_pad[7]", "System.Char[]", 7, false, 41)]
public char[] _pad = new System.Char[7];
public SpaceInfo() {
this.next = default;
this.prev = default;
this.regionbase = default;
this.spacetype = default;
this.link_flag = default;
this._pad0 = default;
this.rpt_mask = default;
this._pad = default;
}
public SpaceInfo(SpaceLink next, SpaceLink prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, char rpt_mask, char[] _pad) {
this.next = next;
this.prev = prev;
this.regionbase = regionbase;
this.spacetype = spacetype;
this.link_flag = link_flag;
this._pad0 = _pad0;
this.rpt_mask = rpt_mask;
this._pad = _pad;
}
}
}