Controller: Add method for reading analog input bytes

This commit is contained in:
Albert Liu
2021-01-03 22:54:16 -08:00
parent 4cc2883224
commit 5ff3299384
8 changed files with 36 additions and 0 deletions

View File

@ -35,6 +35,11 @@ u32 Controller::GetButtonStateBits() const
return 0;
}
std::optional<u32> Controller::GetAnalogInputBytes() const
{
return std::nullopt;
}
u32 Controller::GetVibrationMotorCount() const
{
return 0;