Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,25 +11,44 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
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,