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

45 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;
public class SpaceInfo {
[DNAFieldAttribute(0, "SpaceLink", "*next", 40)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", 40)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", 16)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", 1)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", 1)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "char", "rpt_mask", 1)]
public char rpt_mask;
[DNAFieldAttribute(7, "char", "_pad[7]", 1)]
public char[] _pad = new System.Char[7];
public SpaceInfo(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, char rpt_mask, char[] _pad) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.regionbase = regionbase;
this.spacetype = spacetype;
this.link_flag = link_flag;
this._pad0 = _pad0;
this.rpt_mask = rpt_mask;
this._pad = _pad;
}
}
}