60 lines
2.4 KiB
C#
60 lines
2.4 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(961, "SpaceUserPref", 112)]
|
|
public class SpaceUserPref {
|
|
[DNAFieldAttribute(0, "SpaceLink", "*next", "SpaceLink", 8, true, 0)]
|
|
public SpaceLink ptr_next;
|
|
[DNAFieldAttribute(1, "SpaceLink", "*prev", "SpaceLink", 8, true, 8)]
|
|
public SpaceLink ptr_prev;
|
|
[DNAFieldAttribute(2, "ListBase", "regionbase", "ListBase", 16, false, 16)]
|
|
public ListBase regionbase;
|
|
[DNAFieldAttribute(3, "char", "spacetype", "char", 1, false, 32)]
|
|
public char spacetype;
|
|
[DNAFieldAttribute(4, "char", "link_flag", "char", 1, false, 33)]
|
|
public char link_flag;
|
|
[DNAFieldAttribute(5, "char", "_pad0[6]", "System.Char[]", 6, false, 34)]
|
|
public char[] _pad0 = new System.Char[6];
|
|
[DNAFieldAttribute(6, "char", "_pad1[7]", "System.Char[]", 7, false, 40)]
|
|
public char[] _pad1 = new System.Char[7];
|
|
[DNAFieldAttribute(7, "char", "filter_type", "char", 1, false, 47)]
|
|
public char filter_type;
|
|
[DNAFieldAttribute(8, "char", "filter[64]", "System.Char[]", 64, false, 48)]
|
|
public char[] filter = new System.Char[64];
|
|
public SpaceUserPref() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.regionbase = default;
|
|
this.spacetype = default;
|
|
this.link_flag = default;
|
|
this._pad0 = default;
|
|
this._pad1 = default;
|
|
this.filter_type = default;
|
|
this.filter = default;
|
|
}
|
|
public SpaceUserPref(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, char[] _pad1, char filter_type, char[] filter) {
|
|
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._pad1 = _pad1;
|
|
this.filter_type = filter_type;
|
|
this.filter = filter;
|
|
}
|
|
}
|
|
}
|