Files
BlenderSharp/BlendFile/DNA/SpaceOops.cs
Samuele Lorefice 0674e6b136 - Modified DNAClassAttribute to also support usage on structs
- Added auto generation of DNAClass attributes on file generation
- Regenerated all files
2025-01-23 16:15:50 +01:00

110 lines
4.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(929, "SpaceOops")]
public class SpaceOops {
[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, "View2D", "v2d", 152)]
public View2D v2d;
[DNAFieldAttribute(7, "ListBase", "tree", 16)]
public ListBase tree;
[DNAFieldAttribute(8, "BLI_mempool", "*treestore", 0)]
public BLI_mempool ptr_treestore;
[DNAFieldAttribute(9, "char", "search_string[64]", 1)]
public char[] search_string = new System.Char[64];
[DNAFieldAttribute(10, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(11, "short", "outlinevis", 2)]
public short outlinevis;
[DNAFieldAttribute(12, "short", "lib_override_view_mode", 2)]
public short lib_override_view_mode;
[DNAFieldAttribute(13, "short", "storeflag", 2)]
public short storeflag;
[DNAFieldAttribute(14, "char", "search_flags", 1)]
public char search_flags;
[DNAFieldAttribute(15, "char", "_pad[6]", 1)]
public char[] _pad = new System.Char[6];
[DNAFieldAttribute(16, "char", "sync_select_dirty", 1)]
public char sync_select_dirty;
[DNAFieldAttribute(17, "int", "filter", 4)]
public int filter;
[DNAFieldAttribute(18, "char", "filter_state", 1)]
public char filter_state;
[DNAFieldAttribute(19, "char", "show_restrict_flags", 1)]
public char show_restrict_flags;
[DNAFieldAttribute(20, "short", "filter_id_type", 2)]
public short filter_id_type;
[DNAFieldAttribute(21, "SpaceOutliner_Runtime", "*runtime", 0)]
public SpaceOutliner_Runtime ptr_runtime;
public SpaceOops(
SpaceLink ptr_next,
SpaceLink ptr_prev,
ListBase regionbase,
char spacetype,
char link_flag,
char[] _pad0,
View2D v2d,
ListBase tree,
BLI_mempool ptr_treestore,
char[] search_string,
short flag,
short outlinevis,
short lib_override_view_mode,
short storeflag,
char search_flags,
char[] _pad,
char sync_select_dirty,
int filter,
char filter_state,
char show_restrict_flags,
short filter_id_type,
SpaceOutliner_Runtime ptr_runtime) {
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.v2d = v2d;
this.tree = tree;
this.ptr_treestore = ptr_treestore;
this.search_string = search_string;
this.flag = flag;
this.outlinevis = outlinevis;
this.lib_override_view_mode = lib_override_view_mode;
this.storeflag = storeflag;
this.search_flags = search_flags;
this._pad = _pad;
this.sync_select_dirty = sync_select_dirty;
this.filter = filter;
this.filter_state = filter_state;
this.show_restrict_flags = show_restrict_flags;
this.filter_id_type = filter_id_type;
this.ptr_runtime = ptr_runtime;
}
}
}