clay/src/clay-color.c

11 lines
217 B
C

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