48 lines
1.8 KiB
C#
48 lines
1.8 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(73, "SpaceLink", 40)]
|
|
public class SpaceLink {
|
|
[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];
|
|
public SpaceLink() {
|
|
this.next = default;
|
|
this.prev = default;
|
|
this.regionbase = default;
|
|
this.spacetype = default;
|
|
this.link_flag = default;
|
|
this._pad0 = default;
|
|
}
|
|
public SpaceLink(SpaceLink next, SpaceLink prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0) {
|
|
this.next = next;
|
|
this.prev = prev;
|
|
this.regionbase = regionbase;
|
|
this.spacetype = spacetype;
|
|
this.link_flag = link_flag;
|
|
this._pad0 = _pad0;
|
|
}
|
|
}
|
|
}
|