mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
12 lines
325 B
C++
12 lines
325 B
C++
|
|
||
|
// Local includes
|
||
|
#include <utils/ColorBgr.h>
|
||
|
|
||
|
ColorBgr ColorBgr::BLACK = { 0, 0, 0 };
|
||
|
ColorBgr ColorBgr::RED = { 0, 0, 255 };
|
||
|
ColorBgr ColorBgr::GREEN = { 0, 255, 0 };
|
||
|
ColorBgr ColorBgr::BLUE = { 255, 0, 0 };
|
||
|
ColorBgr ColorBgr::YELLOW= { 0, 255, 255 };
|
||
|
ColorBgr ColorBgr::WHITE = { 255, 255, 255 };
|
||
|
|