Files
UnrealEngine/Engine/Plugins/Online/WebAuth/Source/Public/NullPlatformWebAuth.h
2025-05-18 13:04:45 +08:00

27 lines
401 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
class IWebAuth;
/**
* Null implementation of Web Authentication
*/
class FNullPlatformWebAuth
{
public:
/**
* Creates a platform-specific WebAuth.
*
* @return nullptr if no implementation is available
*/
static IWebAuth* CreatePlatformWebAuth()
{
return nullptr;
}
};
typedef FNullPlatformWebAuth FPlatformWebAuth;