You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
17 lines
287 B
Plaintext
17 lines
287 B
Plaintext
#ifndef CVECTOR4I_BT
|
|
#define CVECTOR4I_BT
|
|
|
|
struct CVector4i;
|
|
|
|
string Vec4iToString(const CVector4i& vec) {
|
|
return Str("%d %d %d %d", vec.x, vec.y, vec.z, vec.w);
|
|
}
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
int z;
|
|
int w;
|
|
} CVector4i <read=Vec4iToString>;
|
|
|
|
#endif // CVECTOR4I_BT |