cell.d 173 B

123456789101112
  1. module cell;
  2. import vector;
  3. import color;
  4. struct Cell {
  5. Vector coordinates;
  6. dchar content;
  7. Color contentColor;
  8. Color backgroundColor = Color.terminal();
  9. }