Files
UnrealEngine/Engine/Plugins/Online/IOS/OnlineSubsystemIOS/Source/Private/OnlineAppStoreUtils.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
558 B
Objective-C
Executable File

// 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