mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
a18ccb8b48
Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
10 lines
365 B
C++
10 lines
365 B
C++
// 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 };
|