metaforce/Runtime/Input/CControllerAxis.hpp

22 lines
450 B
C++
Raw Permalink Normal View History

2022-03-19 21:19:43 -07:00
#pragma once
namespace metaforce {
enum class EJoyAxis {
LeftX,
LeftY,
RightX,
RightY,
MAX
};
class CControllerAxis {
2022-03-22 08:01:33 -07:00
float x0_relative = 0.f;
float x4_absolute = 0.f;
2022-03-19 21:19:43 -07:00
public:
2022-03-22 08:01:33 -07:00
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; }
2022-03-19 21:19:43 -07:00
};
} // namespace metaforce