DRG-Femboy-Voice/Source/FSD/Public/FSDLocalizedChatMessage.h
2025-04-15 12:39:31 -07:00

24 lines
680 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EChatMessageType.h"
#include "FSDLocalizedChatMessage.generated.h"
USTRUCT(BlueprintType)
struct FFSDLocalizedChatMessage {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EChatMessageType MsgType;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FString Sender;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FText Msg;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TArray<FText> Arguments;
FSD_API FFSDLocalizedChatMessage();
};