1 2 3 4 5 6 7 8 9 10 11 12
#ifndef SOFA_COLOR_H #define SOFA_COLOR_H typedef struct { unsigned char r,g,b,a; } color_t; extern const color_t COL_RED; extern const color_t COL_GREEN; extern const color_t COL_BLUE; extern const color_t COL_TRANSP; #endif