Files
UnrealEngine/Engine/Plugins/Online/IOS/OnlineSubsystemIOS/Source/Private/OnlineAppStoreUtils.h
2025-05-18 13:04:45 +08:00

26 lines
558 B
Objective-C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "OnlineSubsystemTypes.h"
/**
* Delegate fires when a query for the app bundle id metadata completes
*
* @param ResponseDict dictionary containing the metadata response
*/
DECLARE_DELEGATE_OneParam(FOnQueryAppBundleIdResponse, NSDictionary* /*ResponseDict*/);
/**
* Helper class for querying app store metadata
*/
@interface FAppStoreUtils : NSObject
{
};
/** Retrieve app store json data */
-(void)queryAppBundleId: (FOnQueryAppBundleIdResponse) completionDelegate;
@end