mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 02:27:43 +00:00
Implement key FrontEnd Touch Bar functionality
This commit is contained in:
19
Runtime/MP1/CFrontEndUITouchBar.cpp
Normal file
19
Runtime/MP1/CFrontEndUITouchBar.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user