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>
11 lines
366 B
C++
11 lines
366 B
C++
// Local includes
|
|
#include <utils/ColorBgr.h>
|
|
|
|
const ColorBgr ColorBgr::BLACK = { 0, 0, 0 };
|
|
const ColorBgr ColorBgr::RED = { 0, 0, 255 };
|
|
const ColorBgr ColorBgr::GREEN = { 0, 255, 0 };
|
|
const ColorBgr ColorBgr::BLUE = { 255, 0, 0 };
|
|
const ColorBgr ColorBgr::YELLOW = { 0, 255, 255 };
|
|
const ColorBgr ColorBgr::WHITE = { 255, 255, 255 };
|
|
|