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,22 +11,38 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class SpreadsheetRowFilter {
[DNAFieldAttribute(0, "SpreadsheetRowFilter", "*next", 152)]
public SpreadsheetRowFilter ptr_next;
[DNAFieldAttribute(1, "SpreadsheetRowFilter", "*prev", 152)]
public SpreadsheetRowFilter ptr_prev;
[DNAFieldAttribute(2, "char", "column_name[64]", 1)]
public char[] column_name = new System.Char[64];
[DNAFieldAttribute(3, "uchar", "operation", 1)]
public byte operation;
[DNAFieldAttribute(4, "uchar", "flag", 1)]
public byte flag;
[DNAFieldAttribute(5, "char", "_pad0[2]", 1)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(6, "int", "value_int", 4)]
public int value_int;
[DNAFieldAttribute(7, "int", "value_int2[2]", 4)]
public int[] value_int2 = new System.Int32[2];
[DNAFieldAttribute(8, "char", "*value_string", 1)]
public char ptr_value_string;
[DNAFieldAttribute(9, "float", "value_float", 4)]
public float value_float;
[DNAFieldAttribute(10, "float", "threshold", 4)]
public float threshold;
[DNAFieldAttribute(11, "float", "value_float2[2]", 4)]
public float[] value_float2 = new System.Single[2];
[DNAFieldAttribute(12, "float", "value_float3[3]", 4)]
public float[] value_float3 = new System.Single[3];
[DNAFieldAttribute(13, "float", "value_color[4]", 4)]
public float[] value_color = new System.Single[4];
[DNAFieldAttribute(14, "char", "_pad1[4]", 1)]
public char[] _pad1 = new System.Char[4];
public SpreadsheetRowFilter(SpreadsheetRowFilter ptr_next, SpreadsheetRowFilter ptr_prev, char[] column_name, byte operation, byte flag, char[] _pad0, int value_int, int[] value_int2, char ptr_value_string, float value_float, float threshold, float[] value_float2, float[] value_float3, float[] value_color, char[] _pad1) {
this.ptr_next = ptr_next;