mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-02 21:55:53 +00:00
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__
|