2020-01-15 07:07:48 -05:00
|
|
|
#include "Runtime/MP1/CSaveGameScreenTouchBar.hpp"
|
2017-02-11 17:17:18 -10:00
|
|
|
|
2021-04-10 01:42:06 -07:00
|
|
|
namespace metaforce::MP1 {
|
2017-02-11 17:17:18 -10:00
|
|
|
|
|
|
|
|
int CSaveGameScreenTouchBar::PopOption() { return -1; }
|
2018-12-07 19:30:43 -10:00
|
|
|
void CSaveGameScreenTouchBar::SetUIOpts(std::u16string_view opt0, std::u16string_view opt1, std::u16string_view opt2) {}
|
2017-02-11 17:17:18 -10:00
|
|
|
|
|
|
|
|
#ifndef __APPLE__
|
2018-12-07 19:30:43 -10:00
|
|
|
std::unique_ptr<CSaveGameScreenTouchBar> NewSaveUITouchBar() { return std::make_unique<CSaveGameScreenTouchBar>(); }
|
2017-02-11 17:17:18 -10:00
|
|
|
#endif
|
|
|
|
|
|
2021-04-10 01:42:06 -07:00
|
|
|
} // namespace metaforce::MP1
|