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