mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-05 13:13:27 +00:00
22 lines
433 B
C++
22 lines
433 B
C++
#include "CSaveUITouchBar.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
namespace MP1
|
|
{
|
|
|
|
int CSaveUITouchBar::PopOption() { return -1; }
|
|
void CSaveUITouchBar::SetUIOpts(const std::u16string& opt0,
|
|
const std::u16string& opt1,
|
|
const std::u16string& opt2) {}
|
|
|
|
#ifndef __APPLE__
|
|
std::unique_ptr<CSaveUITouchBar> NewSaveUITouchBar()
|
|
{
|
|
return std::make_unique<CSaveUITouchBar>();
|
|
}
|
|
#endif
|
|
|
|
}
|
|
}
|