| 8 | |
| 9 | |
| 10 | PaletteEntry::PaletteEntry(const uint8_t red, const uint8_t green, const uint8_t blue) |
| 11 | : red(red), green(green), blue(blue) { |
| 12 | } |
| 13 | |
| 14 | auto PaletteEntry::getRed() const -> uint8_t { return red; } |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected