40 lines
1.4 KiB
C#
40 lines
1.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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
// Automatically generated by BlenderSharp at 22/01/2025 02:33:14
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class SpaceUserPref {
|
|
public SpaceLink ptr_next;
|
|
public SpaceLink ptr_prev;
|
|
public ListBase regionbase;
|
|
public char spacetype;
|
|
public char link_flag;
|
|
public char[] _pad0 = new System.Char[6];
|
|
public char[] _pad1 = new System.Char[7];
|
|
public char filter_type;
|
|
public char[] filter = new System.Char[64];
|
|
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;
|
|
}
|
|
}
|
|
}
|