Files
ppsspp/ios/IAPManager.h
2025-05-25 11:22:05 +02:00

21 lines
452 B
Objective-C

#import <Foundation/Foundation.h>
#import <StoreKit/StoreKit.h>
#include "../ppsspp_config.h"
#if PPSSPP_PLATFORM(IOS_APP_STORE)
@interface IAPManager : NSObject <SKProductsRequestDelegate, SKPaymentTransactionObserver>
+ (instancetype)sharedIAPManager;
- (void)buyGoldWithRequestID:(int)requestID;
- (void)restorePurchasesWithRequestID:(int)requestID;
- (BOOL)isGoldUnlocked;
- (void)startObserving;
- (void)updateIcon:(bool)force;
@end
#endif