Split, match and link CVector3i

This commit is contained in:
2022-10-02 20:09:01 -07:00
parent 302df55a60
commit 9f8f1ab7f7
5 changed files with 23 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
#ifndef __CVECTOR3I_HPP__
#define __CVECTOR3I_HPP__
class CVector3i {
public:
CVector3i(int x, int y, int z);
private:
int mX;
int mY;
int mZ;
};
#endif // __CVECTOR3I_HPP__