Files
BlenderSharp/BlendFile/DNA/SpreadsheetRowFilter.cs

84 lines
4.0 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(971, "SpreadsheetRowFilter", 152)]
public class SpreadsheetRowFilter {
[DNAFieldAttribute(0, "SpreadsheetRowFilter", "*next", "SpreadsheetRowFilter", 8, true, 0)]
public SpreadsheetRowFilter ptr_next;
[DNAFieldAttribute(1, "SpreadsheetRowFilter", "*prev", "SpreadsheetRowFilter", 8, true, 8)]
public SpreadsheetRowFilter ptr_prev;
[DNAFieldAttribute(2, "char", "column_name[64]", "System.Char[]", 64, false, 16)]
public char[] column_name = new System.Char[64];
[DNAFieldAttribute(3, "uchar", "operation", "uchar", 1, false, 80)]
public byte operation;
[DNAFieldAttribute(4, "uchar", "flag", "uchar", 1, false, 81)]
public byte flag;
[DNAFieldAttribute(5, "char", "_pad0[2]", "System.Char[]", 2, false, 82)]
public char[] _pad0 = new System.Char[2];
[DNAFieldAttribute(6, "int", "value_int", "int", 4, false, 84)]
public int value_int;
[DNAFieldAttribute(7, "int", "value_int2[2]", "System.Int32[]", 8, false, 88)]
public int[] value_int2 = new System.Int32[2];
[DNAFieldAttribute(8, "char", "*value_string", "char", 8, true, 96)]
public char ptr_value_string;
[DNAFieldAttribute(9, "float", "value_float", "float", 4, false, 104)]
public float value_float;
[DNAFieldAttribute(10, "float", "threshold", "float", 4, false, 108)]
public float threshold;
[DNAFieldAttribute(11, "float", "value_float2[2]", "System.Single[]", 8, false, 112)]
public float[] value_float2 = new System.Single[2];
[DNAFieldAttribute(12, "float", "value_float3[3]", "System.Single[]", 12, false, 120)]
public float[] value_float3 = new System.Single[3];
[DNAFieldAttribute(13, "float", "value_color[4]", "System.Single[]", 16, false, 132)]
public float[] value_color = new System.Single[4];
[DNAFieldAttribute(14, "char", "_pad1[4]", "System.Char[]", 4, false, 148)]
public char[] _pad1 = new System.Char[4];
public SpreadsheetRowFilter() {
this.ptr_next = default;
this.ptr_prev = default;
this.column_name = default;
this.operation = default;
this.flag = default;
this._pad0 = default;
this.value_int = default;
this.value_int2 = default;
this.ptr_value_string = default;
this.value_float = default;
this.threshold = default;
this.value_float2 = default;
this.value_float3 = default;
this.value_color = default;
this._pad1 = default;
}
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;
this.ptr_prev = ptr_prev;
this.column_name = column_name;
this.operation = operation;
this.flag = flag;
this._pad0 = _pad0;
this.value_int = value_int;
this.value_int2 = value_int2;
this.ptr_value_string = ptr_value_string;
this.value_float = value_float;
this.threshold = threshold;
this.value_float2 = value_float2;
this.value_float3 = value_float3;
this.value_color = value_color;
this._pad1 = _pad1;
}
}
}