Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,26 +15,26 @@ namespace BlendFile.DNA {
[DNAClassAttribute(764, "bDeformGroup", 88)]
public class bDeformGroup {
[DNAFieldAttribute(0, "bDeformGroup", "*next", "bDeformGroup", 8, true, 0)]
public bDeformGroup ptr_next;
[DNAFieldAttribute(1, "bDeformGroup", "*prev", "bDeformGroup", 8, true, 8)]
public bDeformGroup ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false, 16)]
[DNAFieldAttribute(8, "bDeformGroup", 0, "*next", "bDeformGroup", true, 0)]
public bDeformGroup next;
[DNAFieldAttribute(8, "bDeformGroup", 1, "*prev", "bDeformGroup", true, 8)]
public bDeformGroup prev;
[DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "char", "flag", "char", 1, false, 80)]
[DNAFieldAttribute(1, "char", 3, "flag", "char", false, 80)]
public char flag;
[DNAFieldAttribute(4, "char", "_pad0[7]", "System.Char[]", 7, false, 81)]
[DNAFieldAttribute(7, "char", 4, "_pad0[7]", "System.Char[]", false, 81)]
public char[] _pad0 = new System.Char[7];
public bDeformGroup() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.name = default;
this.flag = default;
this._pad0 = default;
}
public bDeformGroup(bDeformGroup ptr_next, bDeformGroup ptr_prev, char[] name, char flag, char[] _pad0) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public bDeformGroup(bDeformGroup next, bDeformGroup prev, char[] name, char flag, char[] _pad0) {
this.next = next;
this.prev = prev;
this.name = name;
this.flag = flag;
this._pad0 = _pad0;