mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 00:04:49 +02:00
14 lines
321 B
C++
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"; }
|
|
};
|