Files
UnrealEngine/Engine/Plugins/Online/OnlineServicesEOS/Source/Public/Online/EpicAccountIdResolverEOS.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
690 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Online/EpicAccountIdResolver.h"
#include "Online/OnlineComponent.h"
namespace UE::Online {
class FEpicAccountIdResolverEOS : public TOnlineComponent<IEpicAccountIdResolver>
{
public:
FEpicAccountIdResolverEOS(class FOnlineServicesEOS& InServices);
// Begin IEpicAccountIdResolver
virtual TFuture<FAccountId> ResolveAccountId(const FAccountId LocalAccountId, const EOS_EpicAccountId EpicAccountId) override;
virtual TFuture<TArray<FAccountId>> ResolveAccountIds(const FAccountId LocalAccountId, const TArray<EOS_EpicAccountId>& EpicAccountIds) override;
// End IEpicAccountIdResolver
};
/* UE::Online */ }