File indexing completed on 2026-04-09 07:49:31
0001 #pragma once
0002
0003 #include <cstddef>
0004
0005 #include "SYSRAP_API_EXPORT.hh"
0006
0007 struct SYSRAP_API SColor
0008 {
0009 unsigned char r ;
0010 unsigned char g ;
0011 unsigned char b ;
0012 unsigned char get(unsigned i) const ;
0013 };
0014
0015 struct SYSRAP_API SColors
0016 {
0017 static const SColor red ;
0018 static const SColor green ;
0019 static const SColor blue ;
0020 static const SColor cyan ;
0021 static const SColor magenta ;
0022 static const SColor yellow ;
0023 static const SColor white ;
0024 static const SColor black ;
0025 };