1#pragma once 2 3// NOTE: This is only used on iOS, to present the availablility of getting PPSSPP Gold through IAP. 4 5#include "ppsspp_config.h" 6 7#include "UI/MiscScreens.h" 8 9class IAPScreen : public UIDialogScreenWithBackground { 10public: 11 void CreateViews() override; 12 const char *tag() const override { return "IAP"; } 13}; 14 15