metaforce/Runtime/MP1/CSaveGameScreenTouchBar.hpp

29 lines
561 B
C++
Raw Normal View History

2017-02-10 23:58:05 +00:00
#ifndef __URDE_CSAVEUITOUCHBAR_HPP__
#define __URDE_CSAVEUITOUCHBAR_HPP__
#include <utility>
#include <memory>
#include <string>
namespace urde
{
namespace MP1
{
2017-02-12 03:17:18 +00:00
class CSaveGameScreenTouchBar
2017-02-10 23:58:05 +00:00
{
public:
2017-02-12 03:17:18 +00:00
virtual ~CSaveGameScreenTouchBar() = default;
2017-02-10 23:58:05 +00:00
virtual int PopOption();
virtual void SetUIOpts(const std::u16string& opt0,
const std::u16string& opt1,
const std::u16string& opt2);
};
2017-02-12 03:17:18 +00:00
std::unique_ptr<CSaveGameScreenTouchBar> NewSaveUITouchBar();
2017-02-10 23:58:05 +00:00
}
}
#endif // __URDE_CSAVEUITOUCHBAR_HPP__