Files
UnrealEngine/Engine/Source/Runtime/Portal/Services/Public/IPortalService.h
2025-05-18 13:04:45 +08:00

15 lines
225 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class IPortalService
{
public:
/** Virtual destructor. */
virtual ~IPortalService() { }
virtual bool IsAvailable() const = 0;
};