~mika/sofa

ref: 0646871a3b71d14d3dd9f39367be1ceff3794b8c sofa/color.h -rw-r--r-- 230 bytes
0646871a — m1ka sofa sitting 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