mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-10 20:35:52 +00:00
12 lines
122 B
C++
12 lines
122 B
C++
#ifndef _CVECTOR2I_HPP
|
|
#define _CVECTOR2I_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CVector2i {
|
|
private:
|
|
s32 x;
|
|
s32 y;
|
|
};
|
|
|
|
#endif |