2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 23:11:20 +00:00
metaforce/Runtime/MP1/CSaveGameScreenTouchBar.hpp
2018-12-07 19:30:43 -10:00

19 lines
404 B
C++

#pragma once
#include <utility>
#include <memory>
#include <string>
namespace urde::MP1 {
class CSaveGameScreenTouchBar {
public:
virtual ~CSaveGameScreenTouchBar() = default;
virtual int PopOption();
virtual void SetUIOpts(std::u16string_view opt0, std::u16string_view opt1, std::u16string_view opt2);
};
std::unique_ptr<CSaveGameScreenTouchBar> NewSaveUITouchBar();
} // namespace urde::MP1