clay/src/clay-color.h

16 lines
266 B
C

#ifndef CLAY_CLAY_COLOR_H
#define CLAY_CLAY_COLOR_H
#include <stdint.h>
typedef struct {
uint8_t r;
uint8_t g;
uint8_t b;
uint8_t a;
} clay_color;
clay_color clay_color_rgba(uint8_t r, uint8_t g, uint8_t b, uint8_t a);
#endif //CLAY_CLAY_COLOR_H