12345678910 |
- // Local includes
- #include <utils/ColorRgb.h>
- const ColorRgb ColorRgb::BLACK = { 0, 0, 0 };
- const ColorRgb ColorRgb::RED = { 255, 0, 0 };
- const ColorRgb ColorRgb::GREEN = { 0, 255, 0 };
- const ColorRgb ColorRgb::BLUE = { 0, 0, 255 };
- const ColorRgb ColorRgb::YELLOW = { 255, 255, 0 };
- const ColorRgb ColorRgb::WHITE = { 255, 255, 255 };
|