mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
19 lines
526 B
C++
19 lines
526 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:
|
|
IAPScreen(bool useIAP) : UIBaseDialogScreen(), useIAP_(useIAP) {}
|
|
void CreateViews() override;
|
|
const char *tag() const override { return "IAP"; }
|
|
private:
|
|
// This screen can also be used to direct to Play Store purchases, for example.
|
|
bool useIAP_ = false;
|
|
};
|