13 lines
300 B
C
13 lines
300 B
C
#ifndef MONS_COLOR_H
|
|
#define MONS_COLOR_H
|
|
|
|
#include "mons_math/vec4.h"
|
|
|
|
#define MONS_COLOR_BLACK (mons_vec4){0,0,0,1}
|
|
#define MONS_COLOR_WHITE MONS_VEC4_ONE
|
|
#define MONS_COLOR_RED (mons_vec4){1,0,0,1}
|
|
#define MONS_COLOR_GREEN (mons_vec4){0,1,0,1}
|
|
#define MONS_COLOR_BLUE (mons_vec4){0,0,1,1}
|
|
|
|
#endif
|