Exemplo n.º 1
0
 public AsciiDisplay(int width, int height)
 {
     this.width  = width;
     this.height = height;
     buf         = new Buffer(width, height, width, height);
     Instance    = this;
 }
Exemplo n.º 2
0
 public AsciiDisplay()
 {
     Instance = this;
     buf      = new Buffer(width, height, width, height);
 }