prime/include/Kyoto/Math/CVector3i.hpp

15 lines
164 B
C++
Raw Normal View History

#ifndef _CVECTOR3I
#define _CVECTOR3I
2022-10-03 03:09:01 +00:00
class CVector3i {
public:
CVector3i(int x, int y, int z);
private:
int mX;
int mY;
int mZ;
};
#endif // _CVECTOR3I