clay/src/color.h
Gwendolyn d89ef83551 Reworked property system completely.
Properties can now have values of different types, and they are registered with their name, either to a layout class or globally.
Layout classes are also registered with their name.
2023-02-08 01:09:21 +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