2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-16 18:45:52 +00:00
metaforce/Runtime/MP1/CFrontEndUITouchBar.cpp
2017-02-08 23:23:17 -10:00

20 lines
549 B
C++

#include "CFrontEndUITouchBar.hpp"
namespace urde
{
CFrontEndUITouchBar::~CFrontEndUITouchBar() {}
void CFrontEndUITouchBar::SetPhase(EPhase ph) {}
void CFrontEndUITouchBar::SetFileSelectPhase(const SFileSelectDetail details[3],
bool eraseGame, bool galleryActive) {}
CFrontEndUITouchBar::EAction CFrontEndUITouchBar::PopAction() { return EAction::None; }
#ifndef __APPLE__
std::unique_ptr<CFrontEndUITouchBar> NewFrontEndUITouchBar()
{
return std::make_unique<CFrontEndUITouchBar>();
}
#endif
}