2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:11:20 +00:00
metaforce/Runtime/MP1/CSaveGameScreenTouchBar.hpp
2018-10-06 17:42:33 -10:00

24 lines
442 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();
}