Generated new code and added initial data handling

This commit is contained in:
mm00
2025-01-27 19:24:50 +01:00
parent ebcc629feb
commit 146a3992ce
940 changed files with 11560 additions and 9 deletions

View File

@@ -43,6 +43,22 @@ namespace BlendFile.DNA {
public int sel_start;
[DNAFieldAttribute(13, "int", "sel_end", 4)]
public int sel_end;
public SpaceConsole() {
this.ptr_next = default;
this.ptr_prev = default;
this.regionbase = default;
this.spacetype = default;
this.link_flag = default;
this._pad0 = default;
this.scrollback = default;
this.history = default;
this.prompt = default;
this.language = default;
this.lheight = default;
this.history_index = default;
this.sel_start = default;
this.sel_end = default;
}
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;
this.ptr_prev = ptr_prev;