mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
18 lines
470 B
C++
18 lines
470 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "RuntimeOptionLocalizableStringEntry.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FORTNITEGAME_API FRuntimeOptionLocalizableStringEntry {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FString Culture;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FString Text;
|
|
|
|
FRuntimeOptionLocalizableStringEntry();
|
|
};
|
|
|