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,29 +15,29 @@ namespace BlendFile.DNA {
[DNAClassAttribute(234, "Effect", 24)]
public class Effect {
[DNAFieldAttribute(0, "Effect", "*next", "Effect", 8, true, 0)]
public Effect ptr_next;
[DNAFieldAttribute(1, "Effect", "*prev", "Effect", 8, true, 8)]
public Effect ptr_prev;
[DNAFieldAttribute(2, "short", "type", "short", 2, false, 16)]
[DNAFieldAttribute(8, "Effect", 0, "*next", "Effect", true, 0)]
public Effect next;
[DNAFieldAttribute(8, "Effect", 1, "*prev", "Effect", true, 8)]
public Effect prev;
[DNAFieldAttribute(2, "short", 2, "type", "short", false, 16)]
public short type;
[DNAFieldAttribute(3, "short", "flag", "short", 2, false, 18)]
[DNAFieldAttribute(2, "short", 3, "flag", "short", false, 18)]
public short flag;
[DNAFieldAttribute(4, "short", "buttype", "short", 2, false, 20)]
[DNAFieldAttribute(2, "short", 4, "buttype", "short", false, 20)]
public short buttype;
[DNAFieldAttribute(5, "char", "_pad0[2]", "System.Char[]", 2, false, 22)]
[DNAFieldAttribute(2, "char", 5, "_pad0[2]", "System.Char[]", false, 22)]
public char[] _pad0 = new System.Char[2];
public Effect() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.type = default;
this.flag = default;
this.buttype = default;
this._pad0 = default;
}
public Effect(Effect ptr_next, Effect ptr_prev, short type, short flag, short buttype, char[] _pad0) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public Effect(Effect next, Effect prev, short type, short flag, short buttype, char[] _pad0) {
this.next = next;
this.prev = prev;
this.type = type;
this.flag = flag;
this.buttype = buttype;