Files
BlenderSharp/BlendFile/DNA/SpaceConsole.cs
2025-02-18 18:16:57 +01:00

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