diff --git a/src/types/gryphn_color.h b/src/types/gryphn_color.h index ca757b0..cacbf22 100644 --- a/src/types/gryphn_color.h +++ b/src/types/gryphn_color.h @@ -1,3 +1,6 @@ #include "../math/gryphn_vec4.h" -typedef gnMultiType4 gnColor; +typedef struct gnColor { + int r, g, b; + float a; +} gnColor;