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

11 lines
225 B
C

//
// Created by gwendolyn on 2/2/23.
//
#include "color.h"
clay_color clay_color_rgba(uint8_t r, uint8_t g, uint8_t b, uint8_t a) {
clay_color color = {.red = r, .green = g, .blue = b, .alpha = a};
return color;
}