//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { public class SpaceConsole { public SpaceLink ptr_next; public SpaceLink ptr_prev; public ListBase regionbase; public char spacetype; public char link_flag; public char[] _pad0 = new System.Char[6]; public ListBase scrollback; public ListBase history; public char[] prompt = new System.Char[256]; public char[] language = new System.Char[32]; public int lheight; public int history_index; public int sel_start; 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; 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; } } }