clay/src/color.h

10 lines
177 B
C
Raw Normal View History

#ifndef CLAY_COLOR_H
#define CLAY_COLOR_H
#include <stdint.h>
#include "clay.h"
clay_color clay_color_rgba(uint8_t r, uint8_t g, uint8_t b, uint8_t a);
#endif //CLAY_COLOR_H