Controller: Make InAnalogMode() virtual

This commit is contained in:
Connor McLaughlin
2022-10-09 14:10:42 +10:00
parent 21da5036c0
commit 4feb5ad548
6 changed files with 20 additions and 1 deletions

View File

@ -23,6 +23,11 @@ ControllerType AnalogController::GetType() const
return ControllerType::AnalogController;
}
bool AnalogController::InAnalogMode() const
{
return m_analog_mode;
}
void AnalogController::Reset()
{
m_command = Command::Idle;