You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
15 lines
260 B
Plaintext
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
|