Files
2026-04-22 15:51:07 +02:00

17 lines
413 B
C++

#pragma once
#include "CoreMinimal.h"
#include "SocialChatMessageEntry.h"
#include "FortChatMessageEntry.generated.h"
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UFortChatMessageEntry : public USocialChatMessageEntry {
GENERATED_BODY()
public:
UFortChatMessageEntry();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnFocusedChanged(bool bIsFocused);
};