Files
DedicatedServerCourse/Source/DedicatedServers/Public/UI/Portal/PortalManager.h

26 lines
560 B
C
Raw Normal View History

2026-03-31 07:42:56 -04:00
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "UI/HTTP/HTTPRequestManager.h"
#include "PortalManager.generated.h"
2026-03-31 08:15:28 -04:00
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FBroadcastJoinGameSessionMessage, const FString&, StatusMessage);
2026-03-31 07:42:56 -04:00
/**
*
*/
UCLASS()
class DEDICATEDSERVERS_API UPortalManager : public UHTTPRequestManager
{
GENERATED_BODY()
2026-03-31 08:15:28 -04:00
public:
UPROPERTY(BlueprintAssignable)
FBroadcastJoinGameSessionMessage BroadcastJoinGameSessionMessage;
void JoinGameSession();
2026-03-31 07:42:56 -04:00
};