mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 17:04:55 +00:00
Implement CGameOptionsTouchBar
This commit is contained in:
19
Runtime/CGameOptionsTouchBar.cpp
Normal file
19
Runtime/CGameOptionsTouchBar.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "CGameOptionsTouchBar.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CGameOptionsTouchBar::EAction CGameOptionsTouchBar::PopAction()
|
||||
{ return EAction::None; }
|
||||
void CGameOptionsTouchBar::GetSelection(int& left, int& right, int& value)
|
||||
{ left = -1, right = -1, value = -1; }
|
||||
void CGameOptionsTouchBar::SetSelection(int left, int right, int value) {}
|
||||
|
||||
#ifndef __APPLE__
|
||||
std::unique_ptr<CGameOptionsTouchBar> NewGameOptionsTouchBar()
|
||||
{
|
||||
return std::make_unique<CGameOptionsTouchBar>();
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user