2019-12-22 20:04:07 +00:00
|
|
|
#include "Runtime/CGameOptionsTouchBar.hpp"
|
2017-02-10 09:00:57 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2017-02-10 09:00:57 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
CGameOptionsTouchBar::EAction CGameOptionsTouchBar::PopAction() { return EAction::None; }
|
2020-08-23 19:48:38 +00:00
|
|
|
|
|
|
|
void CGameOptionsTouchBar::GetSelection(int& left, int& right, int& value) {
|
|
|
|
left = -1;
|
|
|
|
right = -1;
|
|
|
|
value = -1;
|
|
|
|
}
|
|
|
|
|
2020-04-27 01:47:01 +00:00
|
|
|
void CGameOptionsTouchBar::SetSelection([[maybe_unused]] int left, [[maybe_unused]] int right, [[maybe_unused]] int value) {
|
2020-04-24 00:34:03 +00:00
|
|
|
}
|
2017-02-10 09:00:57 +00:00
|
|
|
|
|
|
|
#ifndef __APPLE__
|
2018-12-08 05:30:43 +00:00
|
|
|
std::unique_ptr<CGameOptionsTouchBar> NewGameOptionsTouchBar() { return std::make_unique<CGameOptionsTouchBar>(); }
|
2017-02-10 09:00:57 +00:00
|
|
|
#endif
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|