Files
BlenderSharp/BlendFile/DNA/SpaceConsole.cs
2025-03-11 19:12:04 +01:00

80 lines
3.4 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(960, "SpaceConsole", 376)]
public class SpaceConsole {
[DNAFieldAttribute(8, "SpaceLink", 0, "*next", "SpaceLink", true, 0)]
public SpaceLink next;
[DNAFieldAttribute(8, "SpaceLink", 1, "*prev", "SpaceLink", true, 8)]
public SpaceLink prev;
[DNAFieldAttribute(16, "ListBase", 2, "regionbase", "ListBase", false, 16)]
public ListBase regionbase;
[DNAFieldAttribute(1, "char", 3, "spacetype", "char", false, 32)]
public char spacetype;
[DNAFieldAttribute(1, "char", 4, "link_flag", "char", false, 33)]
public char link_flag;
[DNAArrayAttribute(6, "char", 5, "_pad0[6]", "System.Char[]", 6, 34)]
public char[] _pad0 = new System.Char[6];
[DNAFieldAttribute(16, "ListBase", 6, "scrollback", "ListBase", false, 40)]
public ListBase scrollback;
[DNAFieldAttribute(16, "ListBase", 7, "history", "ListBase", false, 56)]
public ListBase history;
[DNAArrayAttribute(256, "char", 8, "prompt[256]", "System.Char[]", 256, 72)]
public char[] prompt = new System.Char[256];
[DNAArrayAttribute(32, "char", 9, "language[32]", "System.Char[]", 32, 328)]
public char[] language = new System.Char[32];
[DNAFieldAttribute(4, "int", 10, "lheight", "int", false, 360)]
public int lheight;
[DNAFieldAttribute(4, "int", 11, "history_index", "int", false, 364)]
public int history_index;
[DNAFieldAttribute(4, "int", 12, "sel_start", "int", false, 368)]
public int sel_start;
[DNAFieldAttribute(4, "int", 13, "sel_end", "int", false, 372)]
public int sel_end;
public SpaceConsole() {
this.next = default;
this.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 next, SpaceLink 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.next = next;
this.prev = prev;
this.regionbase = regionbase;
this.spacetype = spacetype;
this.link_flag = link_flag;
this._pad0 = _pad0;
this.scrollback = scrollback;
this.history = history;
this.prompt = prompt;
this.language = language;
this.lheight = lheight;
this.history_index = history_index;
this.sel_start = sel_start;
this.sel_end = sel_end;
}
}
}