2019-12-22 15:04:07 -05:00
|
|
|
#include "Runtime/CGameOptionsTouchBar.hpp"
|
2017-02-09 23:00:57 -10:00
|
|
|
|
2021-04-10 01:42:06 -07:00
|
|
|
namespace metaforce {
|
2017-02-09 23:00:57 -10:00
|
|
|
|
2018-12-07 19:30:43 -10:00
|
|
|
CGameOptionsTouchBar::EAction CGameOptionsTouchBar::PopAction() { return EAction::None; }
|
2020-08-23 15:48:38 -04:00
|
|
|
|
|
|
|
|
void CGameOptionsTouchBar::GetSelection(int& left, int& right, int& value) {
|
|
|
|
|
left = -1;
|
|
|
|
|
right = -1;
|
|
|
|
|
value = -1;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-07 12:29:18 -07:00
|
|
|
void CGameOptionsTouchBar::SetSelection([[maybe_unused]] int left, [[maybe_unused]] int right,
|
|
|
|
|
[[maybe_unused]] int value) {}
|
2017-02-09 23:00:57 -10:00
|
|
|
|
2022-02-04 23:25:35 -05:00
|
|
|
//#ifndef __APPLE__
|
2018-12-07 19:30:43 -10:00
|
|
|
std::unique_ptr<CGameOptionsTouchBar> NewGameOptionsTouchBar() { return std::make_unique<CGameOptionsTouchBar>(); }
|
2022-02-04 23:25:35 -05:00
|
|
|
//#endif
|
2017-02-09 23:00:57 -10:00
|
|
|
|
2021-04-10 01:42:06 -07:00
|
|
|
} // namespace metaforce
|