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