Пример #1
0
        //////////////////////////////////////////////////////////////////////////////

        #region IConsoleDelegate implementation

        public void OnConsoleEntryAdded(AbstractConsole console, ref ConsoleViewCellEntry entry)
        {
            if (entry.IsTable)
            {
                string[] table = entry.Table;
                foreach (string item in table)
                {
                    terminalTableOutput.Add(StringUtils.RemoveRichTextTags(item));
                }
            }
        }
Пример #2
0
 public MockConsoleView(AbstractConsole console, float width, float height)
     : base(console, width, height)
 {
 }
Пример #3
0
 public void OnConsoleCleared(AbstractConsole console)
 {
 }