mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-06 06:33:38 +00:00
15 lines
164 B
C++
15 lines
164 B
C++
#ifndef _CVECTOR3I
|
|
#define _CVECTOR3I
|
|
|
|
class CVector3i {
|
|
public:
|
|
CVector3i(int x, int y, int z);
|
|
|
|
private:
|
|
int mX;
|
|
int mY;
|
|
int mZ;
|
|
};
|
|
|
|
#endif // _CVECTOR3I
|