Files
BlenderSharp/BlendFile/DNA/FileFolderHistory.cs
2025-01-22 02:23:29 +01:00

21 lines
798 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class FileFolderHistory {
public FileFolderLists ptr_next;
public FileFolderLists ptr_prev;
public char browse_mode;
public char[] _pad = new System.Char[7];
public ListBase folders_prev;
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;
this.ptr_prev = ptr_prev;
this.browse_mode = browse_mode;
this._pad = _pad;
this.folders_prev = folders_prev;
this.folders_next = folders_next;
}
}
}