setBackgroundColorRgb method

void setBackgroundColorRgb(
  1. int r,
  2. int g,
  3. int b
)

Implementation

void setBackgroundColorRgb(int r, int g, int b) {
  background = (r << 16) | (g << 8) | b | CellColor.rgb;
}