mirror of https://github.com/PrimeDecomp/prime.git
15 lines
185 B
C++
15 lines
185 B
C++
|
#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__
|