Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/UI/IAPScreen.h
3185 views
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
9
class IAPScreen : public UIDialogScreenWithBackground {
10
public:
11
void CreateViews() override;
12
const char *tag() const override { return "IAP"; }
13
};
14
15