setCell method

void setCell(
  1. int x,
  2. int y,
  3. String char,
  4. Color fg,
  5. Color bg,
  6. int attributes,
)

Sets a single cell at (x, y) using alpha blending.

Implementation

void setCell(int x, int y, String char, Color fg, Color bg, int attributes) {
  setCellWithAlphaBlending(x, y, char, fg, bg, attributes);
}