Files
BlenderSharp/BlendFile/DNA/SpaceSpreadsheet.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

94 lines
3.9 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(968, "SpaceSpreadsheet")]
public class SpaceSpreadsheet {
[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, "ListBase", "columns", 16)]
public ListBase columns;
[DNAFieldAttribute(7, "ListBase", "row_filters", 16)]
public ListBase row_filters;
[DNAFieldAttribute(8, "ViewerPath", "viewer_path", 16)]
public ViewerPath viewer_path;
[DNAFieldAttribute(9, "SpreadsheetInstanceID", "*instance_ids", 4)]
public SpreadsheetInstanceID ptr_instance_ids;
[DNAFieldAttribute(10, "int", "instance_ids_num", 4)]
public int instance_ids_num;
[DNAFieldAttribute(11, "uchar", "filter_flag", 1)]
public byte filter_flag;
[DNAFieldAttribute(12, "uchar", "geometry_component_type", 1)]
public byte geometry_component_type;
[DNAFieldAttribute(13, "uchar", "attribute_domain", 1)]
public byte attribute_domain;
[DNAFieldAttribute(14, "uchar", "object_eval_state", 1)]
public byte object_eval_state;
[DNAFieldAttribute(15, "int", "active_layer_index", 4)]
public int active_layer_index;
[DNAFieldAttribute(16, "int", "flag", 4)]
public int flag;
[DNAFieldAttribute(17, "SpaceSpreadsheet_Runtime", "*runtime", 0)]
public SpaceSpreadsheet_Runtime ptr_runtime;
public SpaceSpreadsheet(
SpaceLink ptr_next,
SpaceLink ptr_prev,
ListBase regionbase,
char spacetype,
char link_flag,
char[] _pad0,
ListBase columns,
ListBase row_filters,
ViewerPath viewer_path,
SpreadsheetInstanceID ptr_instance_ids,
int instance_ids_num,
byte filter_flag,
byte geometry_component_type,
byte attribute_domain,
byte object_eval_state,
int active_layer_index,
int flag,
SpaceSpreadsheet_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.columns = columns;
this.row_filters = row_filters;
this.viewer_path = viewer_path;
this.ptr_instance_ids = ptr_instance_ids;
this.instance_ids_num = instance_ids_num;
this.filter_flag = filter_flag;
this.geometry_component_type = geometry_component_type;
this.attribute_domain = attribute_domain;
this.object_eval_state = object_eval_state;
this.active_layer_index = active_layer_index;
this.flag = flag;
this.ptr_runtime = ptr_runtime;
}
}
}