Example #1
0
 public tinta(ConsoleColor color, eTipoTinta tipo) : this(color)
 {
     this._tipo = tipo;
 }
Example #2
0
 public tinta()
 {
     this._color = ConsoleColor.Blue;
     this._tipo  = eTipoTinta.ConBrillita;
 }
Example #3
0
 public Tinta(eTipoTinta _tipo, ConsoleColor _color) : this(_color)
 {
     this._tipo = _tipo;
 }
Example #4
0
 public Tinta(ConsoleColor color, eTipoTinta tipoTinta) //: this(color)
 {
     this._TipoTinta = tipoTinta;                       //Rellenaria con comun
     this._Color     = color;                           //Rellenaria con negro
 }
Example #5
0
 public Tinta()
 {
     this._color = ConsoleColor.Blue;
     this._tipo  = eTipoTinta.comun;
 }