Finish splitting text.s!

This commit is contained in:
2022-04-16 00:50:32 -07:00
parent d9393c0953
commit 85c0f37226
188 changed files with 118893 additions and 118378 deletions

View 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__