Files
2023-02-15 10:09:07 -08:00

12 lines
124 B
Plaintext

#ifndef _CVECTOR3I
#define _CVECTOR3I
typedef struct {
int x;
int y;
int z;
} CVector3i;
#endif// _CVECTOR3I