mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
24 lines
668 B
C++
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();
|
|
};
|
|
|