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

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