public AsciiDisplay(int width, int height) { this.width = width; this.height = height; buf = new Buffer(width, height, width, height); Instance = this; }
public AsciiDisplay() { Instance = this; buf = new Buffer(width, height, width, height); }