Exemplo n.º 1
0
 public void Add(DCLine DCLine)
 {
     foreach (var Char in DCLine.Text)
     {
         _Chars.Add(new DrawerChar()
         {
             Icon = Char, Color = DCLine.Foreground, Back = DCLine.Background
         });
     }
 }
Exemplo n.º 2
0
 public DrawerLine(DCLine DCLine)
 {
     this.Add(DCLine);
 }