mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-15 23:37:01 +00:00
Finish splitting text.s!
This commit is contained in:
17
include/Kyoto/Math/CVector2f.hpp
Normal file
17
include/Kyoto/Math/CVector2f.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef __CVECTOR2F_HPP__
|
||||
#define __CVECTOR2F_HPP__
|
||||
|
||||
|
||||
class CVector2f {
|
||||
public:
|
||||
explicit CVector2f(float x, float y) : mX(x), mY(y) {}
|
||||
|
||||
float GetX() const { return mX; }
|
||||
float GetY() const { return mY; }
|
||||
|
||||
private:
|
||||
float mX;
|
||||
float mY;
|
||||
};
|
||||
|
||||
#endif // __CVECTOR3F_HPP__
|
||||
Reference in New Issue
Block a user