Begin decompiling CCameraFilterPass::DrawWideScreen

Former-commit-id: 44d675d87d
This commit is contained in:
2022-07-02 01:30:04 -04:00
parent 8492e9ab26
commit 03357b2acd
14 changed files with 389 additions and 21 deletions

View File

@@ -1,17 +1,18 @@
#ifndef __CVECTOR2F_HPP__
#define __CVECTOR2F_HPP__
#include "types.h"
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;
explicit CVector2f(f32 x, f32 y) : mX(x), mY(y) {}
f32 GetX() const { return mX; }
f32 GetY() const { return mY; }
// private:
f32 mX;
f32 mY;
};
#endif // __CVECTOR3F_HPP__