Files
ppsspp/UI/IAPScreen.h
Henrik Rydgård 2dbb54667d IAP work
2025-05-25 11:22:04 +02:00

14 lines
321 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/MiscScreens.h"
class IAPScreen : public UIDialogScreenWithBackground {
public:
void CreateViews() override;
const char *tag() const override { return "IAP"; }
};