#pragma once #ifndef COLOR_H_ #define COLOR_H_ struct RGBColor { unsigned char r, g, b; }; #endif // COLOR_H_