| 29 | uint8 mBlue; |
| 30 | |
| 31 | cPalette() { mRed = 0; mGreen = 0; mBlue = 0; } |
| 32 | |
| 33 | uint8 getPos( size_t i ) { if (i == 0) return mRed; if (i == 1) return mGreen; if (i == 2) return mBlue; return 0; } |
| 34 | void setPos( size_t i, uint8 pval ) { |
nothing calls this directly
no outgoing calls
no test coverage detected