Files
UnrealEngine/Engine/Source/Runtime/Portal/Rpc/Public/IPortalRpcModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
498 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
class IPortalRpcLocator;
class IPortalRpcResponder;
class IPortalRpcServer;
/**
* Interface for the PortalRpc module.
*/
class IPortalRpcModule
: public IModuleInterface
{
public:
virtual TSharedRef<IPortalRpcLocator> CreateLocator() = 0;
virtual TSharedRef<IPortalRpcResponder> CreateResponder() = 0;
virtual TSharedRef<IPortalRpcServer> CreateServer() = 0;
};