mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 03:47:40 +00:00
Finish splitting text.s!
This commit is contained in:
18
include/Kyoto/Math/CVector3f.hpp
Normal file
18
include/Kyoto/Math/CVector3f.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user