clay/src/clay/color.h
2023-02-08 01:15:41 +01:00

10 lines
177 B
C

#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