mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-21 18:52:00 +00:00
19 lines
287 B
C++
19 lines
287 B
C++
#ifndef __CVECTOR3F_HPP__
|
|
#define __CVECTOR3F_HPP__
|
|
|
|
|
|
class CVector3f {
|
|
public:
|
|
|
|
float GetX() const { return mX; }
|
|
float GetY() const { return mY; }
|
|
float GetZ() const { return mZ; }
|
|
|
|
private:
|
|
float mX;
|
|
float mY;
|
|
float mZ;
|
|
};
|
|
|
|
#endif // __CVECTOR3F_HPP__
|