mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
20 lines
440 B
C++
20 lines
440 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Object.h"
|
|
#include "FortChatRoomJoinHelper.generated.h"
|
|
|
|
class USocialChatChannel;
|
|
|
|
UCLASS(Blueprintable, Within=FortChatManager)
|
|
class UFortChatRoomJoinHelper : public UObject {
|
|
GENERATED_BODY()
|
|
public:
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
USocialChatChannel* JoinedChannel;
|
|
|
|
public:
|
|
UFortChatRoomJoinHelper();
|
|
};
|
|
|