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,21 +11,36 @@ using System;
namespace BlendFile.DNA {
using BlendFile;
public class SpaceConsole {
[DNAFieldAttribute(0, "SpaceLink", "*next", 40)]
public SpaceLink ptr_next;
[DNAFieldAttribute(1, "SpaceLink", "*prev", 40)]
public SpaceLink ptr_prev;
[DNAFieldAttribute(2, "ListBase", "regionbase", 16)]
public ListBase regionbase;
[DNAFieldAttribute(3, "char", "spacetype", 1)]
public char spacetype;
[DNAFieldAttribute(4, "char", "link_flag", 1)]
public char link_flag;
[DNAFieldAttribute(5, "char", "_pad0[6]", 1)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(6, "ListBase", "scrollback", 16)]
public ListBase scrollback;
[DNAFieldAttribute(7, "ListBase", "history", 16)]
public ListBase history;
[DNAFieldAttribute(8, "char", "prompt[256]", 1)]
public char[] prompt = new System.Char[256];
[DNAFieldAttribute(9, "char", "language[32]", 1)]
public char[] language = new System.Char[32];
[DNAFieldAttribute(10, "int", "lheight", 4)]
public int lheight;
[DNAFieldAttribute(11, "int", "history_index", 4)]
public int history_index;
[DNAFieldAttribute(12, "int", "sel_start", 4)]
public int sel_start;
[DNAFieldAttribute(13, "int", "sel_end", 4)]
public int sel_end;
public SpaceConsole(SpaceLink ptr_next, SpaceLink ptr_prev, ListBase regionbase, char spacetype, char link_flag, char[] _pad0, ListBase scrollback, ListBase history, char[] prompt, char[] language, int lheight, int history_index, int sel_start, int sel_end) {
this.ptr_next = ptr_next;