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(116, "BoidRule", 56)]
public class BoidRule {
[DNAFieldAttribute(0, "BoidRule", "*next", "BoidRule", 8, true, 0)]
public BoidRule ptr_next;
[DNAFieldAttribute(1, "BoidRule", "*prev", "BoidRule", 8, true, 8)]
public BoidRule ptr_prev;
[DNAFieldAttribute(2, "int", "type", "int", 4, false, 16)]
[DNAFieldAttribute(8, "BoidRule", 0, "*next", "BoidRule", true, 0)]
public BoidRule next;
[DNAFieldAttribute(8, "BoidRule", 1, "*prev", "BoidRule", true, 8)]
public BoidRule prev;
[DNAFieldAttribute(4, "int", 2, "type", "int", false, 16)]
public int type;
[DNAFieldAttribute(3, "int", "flag", "int", 4, false, 20)]
[DNAFieldAttribute(4, "int", 3, "flag", "int", false, 20)]
public int flag;
[DNAFieldAttribute(4, "char", "name[32]", "System.Char[]", 32, false, 24)]
[DNAFieldAttribute(32, "char", 4, "name[32]", "System.Char[]", false, 24)]
public char[] name = new System.Char[32];
public BoidRule() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.type = default;
this.flag = default;
this.name = default;
}
public BoidRule(BoidRule ptr_next, BoidRule ptr_prev, int type, int flag, char[] name) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public BoidRule(BoidRule next, BoidRule prev, int type, int flag, char[] name) {
this.next = next;
this.prev = prev;
this.type = type;
this.flag = flag;
this.name = name;