#pragma once12// NOTE: This is only used on iOS, to present the availablility of getting PPSSPP Gold through IAP.34#include "ppsspp_config.h"56#include "UI/BaseScreens.h"7#include "UI/SimpleDialogScreen.h"89class IAPScreen : public UIBaseDialogScreen {10public:11IAPScreen(bool useIAP) : UIBaseDialogScreen(), useIAP_(useIAP) {}12void CreateViews() override;13const char *tag() const override { return "IAP"; }14private:15// This screen can also be used to direct to Play Store purchases, for example.16bool useIAP_ = false;17};181920