You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
12 lines
124 B
Plaintext
12 lines
124 B
Plaintext
#ifndef _CVECTOR3I
|
|
#define _CVECTOR3I
|
|
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
int z;
|
|
} CVector3i;
|
|
|
|
#endif// _CVECTOR3I
|