Files
FNGameProj/Source/FortniteGame/Public/FortMatchmakingSingleSession.h
2024-01-21 00:41:14 +01:00

24 lines
668 B
C++

#pragma once
#include "CoreMinimal.h"
#include "FortInviteSessionParams.h"
#include "FortMatchmakingPolicy.h"
#include "FortMatchmakingSingleSession.generated.h"
class UFortSessionHelper;
UCLASS(Blueprintable)
class FORTNITEGAME_API UFortMatchmakingSingleSession : public UFortMatchmakingPolicy {
GENERATED_BODY()
public:
private:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
FFortInviteSessionParams CurrentSessionParams;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
UFortSessionHelper* SessionHelper;
public:
UFortMatchmakingSingleSession();
};