rewrite gnColor to be C compatible

This commit is contained in:
Greg Wells
2025-05-14 05:56:41 -04:00
parent fd63b411d9
commit 9d0ad3fb83

View File

@@ -1,3 +1,6 @@
#include "../math/gryphn_vec4.h"
typedef gnMultiType4<int, int, int, float> gnColor;
typedef struct gnColor {
int r, g, b;
float a;
} gnColor;