2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 17:04:55 +00:00

Implement CGameOptionsTouchBar

This commit is contained in:
Jack Andersen
2017-02-09 23:00:57 -10:00
parent c806f4a612
commit 17d986bb43
17 changed files with 1255 additions and 111 deletions

View 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
}