prime/include/Kyoto/Math/CVector3i.hpp
Luke Street 7f83e1fa03 Standardize include guards, clang-format headers
Former-commit-id: 261ee48bba0546f4620447040b7c3d3034686796
2022-10-09 01:13:17 -04:00

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