Files
2023-03-20 00:33:01 -04:00

15 lines
260 B
Plaintext

#ifndef _CCOLOR4F
#define _CCOLOR4F
struct CColor4f;
string ColorToString(const CColor4f& color) {
return Str("%f %f %f %f", color.r, color.g, color.b, color.a);
}
typedef struct {
float r, g, b, a;
} CColor4f <read=ColorToString>;
#endif// _CCOLOR4F