mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-28 01:35:00 +02:00
14 lines
311 B
C++
14 lines
311 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"
|
|
|
|
class IAPScreen : public UIBaseDialogScreen {
|
|
public:
|
|
void CreateViews() override;
|
|
const char *tag() const override { return "IAP"; }
|
|
};
|