Files
ppsspp/UI/IAPScreen.h
T

15 lines
346 B
C++

#pragma once
// NOTE: This is only used on iOS, to present the availablility of getting PPSSPP Gold through IAP.
#include "ppsspp_config.h"
#include "UI/BaseScreens.h"
#include "UI/SimpleDialogScreen.h"
class IAPScreen : public UIBaseDialogScreen {
public:
void CreateViews() override;
const char *tag() const override { return "IAP"; }
};