Ejemplo n.º 1
0
        //////////////////////////////////////////////////////////////////////////////

        #region IConsoleDelegate implementation

        public void OnConsoleEntryAdded(CAbstractConsole console, ref CConsoleViewCellEntry entry)
        {
            if (entry.IsTable)
            {
                string[] table = entry.Table;
                foreach (string item in table)
                {
                    terminalTableOutput.Add(CStringUtils.RemoveRichTextTags(item));
                }
            }
        }
Ejemplo n.º 2
0
 public MockConsoleView(CAbstractConsole console, float width, float height)
     : base(console, width, height)
 {
 }
Ejemplo n.º 3
0
 public void OnConsoleCleared(CAbstractConsole console)
 {
 }