Regenerated all the files

This commit is contained in:
Samuele Lorefice
2025-01-22 20:24:55 +01:00
parent 162f888600
commit bf1eb8201c
939 changed files with 10620 additions and 0 deletions

View File

@@ -11,13 +11,20 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class FileFolderHistory {
[DNAFieldAttribute(0, "FileFolderLists", "*next", 0)]
public FileFolderLists ptr_next;
[DNAFieldAttribute(1, "FileFolderLists", "*prev", 0)]
public FileFolderLists ptr_prev;
[DNAFieldAttribute(2, "char", "browse_mode", 1)]
public char browse_mode;
[DNAFieldAttribute(3, "char", "_pad[7]", 1)]
public char[] _pad = new System.Char[7];
[DNAFieldAttribute(4, "ListBase", "folders_prev", 16)]
public ListBase folders_prev;
[DNAFieldAttribute(5, "ListBase", "folders_next", 16)]
public ListBase folders_next;
public FileFolderHistory(FileFolderLists ptr_next, FileFolderLists ptr_prev, char browse_mode, char[] _pad, ListBase folders_prev, ListBase folders_next) {
this.ptr_next = ptr_next;