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,27 +15,27 @@ namespace BlendFile.DNA {
[DNAClassAttribute(849, "LayoutPanelState", 32)]
public class LayoutPanelState {
[DNAFieldAttribute(0, "LayoutPanelState", "*next", "LayoutPanelState", 8, true, 0)]
public LayoutPanelState ptr_next;
[DNAFieldAttribute(1, "LayoutPanelState", "*prev", "LayoutPanelState", 8, true, 8)]
public LayoutPanelState ptr_prev;
[DNAFieldAttribute(2, "char", "*idname", "char", 8, true, 16)]
public char ptr_idname;
[DNAFieldAttribute(3, "uchar", "flag", "uchar", 1, false, 24)]
[DNAFieldAttribute(8, "LayoutPanelState", 0, "*next", "LayoutPanelState", true, 0)]
public LayoutPanelState next;
[DNAFieldAttribute(8, "LayoutPanelState", 1, "*prev", "LayoutPanelState", true, 8)]
public LayoutPanelState prev;
[DNAFieldAttribute(8, "char", 2, "*idname", "char", true, 16)]
public char idname;
[DNAFieldAttribute(1, "uchar", 3, "flag", "uchar", false, 24)]
public byte flag;
[DNAFieldAttribute(4, "char", "_pad[7]", "System.Char[]", 7, false, 25)]
[DNAFieldAttribute(7, "char", 4, "_pad[7]", "System.Char[]", false, 25)]
public char[] _pad = new System.Char[7];
public LayoutPanelState() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_idname = default;
this.next = default;
this.prev = default;
this.idname = default;
this.flag = default;
this._pad = default;
}
public LayoutPanelState(LayoutPanelState ptr_next, LayoutPanelState ptr_prev, char ptr_idname, byte flag, char[] _pad) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_idname = ptr_idname;
public LayoutPanelState(LayoutPanelState next, LayoutPanelState prev, char idname, byte flag, char[] _pad) {
this.next = next;
this.prev = prev;
this.idname = idname;
this.flag = flag;
this._pad = _pad;
}