Added Generation Output

This commit is contained in:
Samuele Lorefice
2025-01-22 02:23:29 +01:00
parent 83b207b799
commit fa78292a67
936 changed files with 31758 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class SpaceSpreadsheet {
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 ListBase columns;
public ListBase row_filters;
public ViewerPath viewer_path;
public SpreadsheetInstanceID ptr_instance_ids;
public int instance_ids_num;
public uchar filter_flag;
public uchar geometry_component_type;
public uchar attribute_domain;
public uchar object_eval_state;
public int active_layer_index;
public int flag;
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,
uchar filter_flag,
uchar geometry_component_type,
uchar attribute_domain,
uchar 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;
}
}
}