Exemple #1
0
 public void LocalOutputMsg(string msg)
 {
     foreach (char chr in msg)
     {
         ScreenChar screenChr = new ScreenChar(char.ToUpper(chr), CharAttributes.Message);
         //OutputBufferEnqueue(screenChr);
         Output?.Invoke(screenChr);
     }
 }
Exemple #2
0
 public void LocalOutputEnqueue(ScreenChar screenChar)
 {
     _localOutputBuffer.Enqueue(screenChar);
 }