~mika/sofa

sofa/color.h -rw-r--r-- 230 bytes
3922037a — m1ka Add licensing + fix last memory mgmt issue 27 days ago
                                                                                
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