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,21 +11,36 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class FreestyleLineSet {
[DNAFieldAttribute(0, "FreestyleLineSet", "*next", 128)]
public FreestyleLineSet ptr_next;
[DNAFieldAttribute(1, "FreestyleLineSet", "*prev", 128)]
public FreestyleLineSet ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", 1)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "int", "flags", 4)]
public int flags;
[DNAFieldAttribute(4, "int", "selection", 4)]
public int selection;
[DNAFieldAttribute(5, "short", "qi", 2)]
public short qi;
[DNAFieldAttribute(6, "char", "_pad1[2]", 1)]
public char[] _pad1 = new System.Char[2];
[DNAFieldAttribute(7, "int", "qi_start", 4)]
public int qi_start;
[DNAFieldAttribute(8, "int", "qi_end", 4)]
public int qi_end;
[DNAFieldAttribute(9, "int", "edge_types", 4)]
public int edge_types;
[DNAFieldAttribute(10, "int", "exclude_edge_types", 4)]
public int exclude_edge_types;
[DNAFieldAttribute(11, "char", "_pad2[4]", 1)]
public char[] _pad2 = new System.Char[4];
[DNAFieldAttribute(12, "Collection", "*group", 376)]
public Collection ptr_group;
[DNAFieldAttribute(13, "FreestyleLineStyle", "*linestyle", 552)]
public FreestyleLineStyle ptr_linestyle;
public FreestyleLineSet(FreestyleLineSet ptr_next, FreestyleLineSet ptr_prev, char[] name, int flags, int selection, short qi, char[] _pad1, int qi_start, int qi_end, int edge_types, int exclude_edge_types, char[] _pad2, Collection ptr_group, FreestyleLineStyle ptr_linestyle) {
this.ptr_next = ptr_next;