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,24 +15,24 @@ namespace BlendFile.DNA {
[DNAClassAttribute(1066, "WorkSpaceLayout", 88)]
public class WorkSpaceLayout {
[DNAFieldAttribute(0, "WorkSpaceLayout", "*next", "WorkSpaceLayout", 8, true, 0)]
public WorkSpaceLayout ptr_next;
[DNAFieldAttribute(1, "WorkSpaceLayout", "*prev", "WorkSpaceLayout", 8, true, 8)]
public WorkSpaceLayout ptr_prev;
[DNAFieldAttribute(2, "bScreen", "*screen", "bScreen", 8, true, 16)]
public bScreen ptr_screen;
[DNAFieldAttribute(3, "char", "name[64]", "System.Char[]", 64, false, 24)]
[DNAFieldAttribute(8, "WorkSpaceLayout", 0, "*next", "WorkSpaceLayout", true, 0)]
public WorkSpaceLayout next;
[DNAFieldAttribute(8, "WorkSpaceLayout", 1, "*prev", "WorkSpaceLayout", true, 8)]
public WorkSpaceLayout prev;
[DNAFieldAttribute(8, "bScreen", 2, "*screen", "bScreen", true, 16)]
public bScreen screen;
[DNAFieldAttribute(64, "char", 3, "name[64]", "System.Char[]", false, 24)]
public char[] name = new System.Char[64];
public WorkSpaceLayout() {
this.ptr_next = default;
this.ptr_prev = default;
this.ptr_screen = default;
this.next = default;
this.prev = default;
this.screen = default;
this.name = default;
}
public WorkSpaceLayout(WorkSpaceLayout ptr_next, WorkSpaceLayout ptr_prev, bScreen ptr_screen, char[] name) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_screen = ptr_screen;
public WorkSpaceLayout(WorkSpaceLayout next, WorkSpaceLayout prev, bScreen screen, char[] name) {
this.next = next;
this.prev = prev;
this.screen = screen;
this.name = name;
}
}