~mika/sofa

ref: 3922037a9e512d81be901f99d314921ed5a69d7c sofa/color.c -rw-r--r-- 199 bytes
3922037a — m1ka Add licensing + fix last memory mgmt issue 27 days ago
                                                                                
1
2
3
4
5
6
7
#include "color.h"

const color_t COL_RED = { 255, 0, 0, 255 };
const color_t COL_GREEN = { 0, 255, 0, 255 };
const color_t COL_BLUE = { 0, 0, 255, 255 };
const color_t COL_TRANSP = { 0, 0, 0, 0 };