Files
2023-02-13 01:06:03 -08:00

10 lines
145 B
Plaintext

#ifndef CVECTOR3F_BT
#define CVECTOR3F_BT
typedef struct CVector3f {
float x;
float y;
float z;
} CVector3f;
#endif // CVECTOR3F_BT