#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