Link DolphinIController.cpp, start matching CSmallAllocPool

Former-commit-id: 228319e2a5
This commit is contained in:
2022-09-11 11:45:19 -07:00
parent 4f851a605b
commit 6b306c1121
12 changed files with 362 additions and 36 deletions

View File

@@ -0,0 +1,16 @@
#ifndef __CCONTROLLERAXIS_HPP__
#define __CCONTROLLERAXIS_HPP__
class CControllerAxis {
public:
CControllerAxis() : x0_relative(0.f), x4_absolute(0.f) {}
void SetRelativeValue(float val) { x0_relative = val; }
float GetRelativeValue() const { return x0_relative; }
void SetAbsoluteValue(float val) { x4_absolute = val; }
float GetAbsoluteValue() const { return x4_absolute; }
public:
float x0_relative;
float x4_absolute;
};
#endif // __CCONTROLLERAXIS_HPP__