| 224 | } |
| 225 | |
| 226 | void TriColor::SetColor( |
| 227 | const ::Color* ar ) |
| 228 | { |
| 229 | r = ar->r; |
| 230 | g = ar->g; |
| 231 | b = ar->b; |
| 232 | |
| 233 | if( ar->a != TRICOLOR_NOALPHA ) |
| 234 | a = ar->a; |
| 235 | } |
| 236 | |
| 237 | |
| 238 | const ::Color* TriColor::GetColor() const |
no outgoing calls
no test coverage detected