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(942, "FileFolderHistory", 56)]
public class FileFolderHistory {
[DNAFieldAttribute(0, "FileFolderLists", "*next", "FileFolderLists", 8, true, 0)]
public FileFolderLists ptr_next;
[DNAFieldAttribute(1, "FileFolderLists", "*prev", "FileFolderLists", 8, true, 8)]
public FileFolderLists ptr_prev;
[DNAFieldAttribute(2, "char", "browse_mode", "char", 1, false, 16)]
[DNAFieldAttribute(8, "FileFolderLists", 0, "*next", "FileFolderLists", true, 0)]
public FileFolderLists next;
[DNAFieldAttribute(8, "FileFolderLists", 1, "*prev", "FileFolderLists", true, 8)]
public FileFolderLists prev;
[DNAFieldAttribute(1, "char", 2, "browse_mode", "char", false, 16)]
public char browse_mode;
[DNAFieldAttribute(3, "char", "_pad[7]", "System.Char[]", 7, false, 17)]
[DNAFieldAttribute(7, "char", 3, "_pad[7]", "System.Char[]", false, 17)]
public char[] _pad = new System.Char[7];
[DNAFieldAttribute(4, "ListBase", "folders_prev", "ListBase", 16, false, 24)]
[DNAFieldAttribute(16, "ListBase", 4, "folders_prev", "ListBase", false, 24)]
public ListBase folders_prev;
[DNAFieldAttribute(5, "ListBase", "folders_next", "ListBase", 16, false, 40)]
[DNAFieldAttribute(16, "ListBase", 5, "folders_next", "ListBase", false, 40)]
public ListBase folders_next;
public FileFolderHistory() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.browse_mode = default;
this._pad = default;
this.folders_prev = default;
this.folders_next = default;
}
public FileFolderHistory(FileFolderLists ptr_next, FileFolderLists ptr_prev, char browse_mode, char[] _pad, ListBase folders_prev, ListBase folders_next) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public FileFolderHistory(FileFolderLists next, FileFolderLists prev, char browse_mode, char[] _pad, ListBase folders_prev, ListBase folders_next) {
this.next = next;
this.prev = prev;
this.browse_mode = browse_mode;
this._pad = _pad;
this.folders_prev = folders_prev;