mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
19 lines
516 B
C++
19 lines
516 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "Engine/DeveloperSettings.h"
|
|
#include "FortTextHotfixConfig.generated.h"
|
|
|
|
UCLASS(Blueprintable, Config=Engine, DefaultConfig, Config=Game)
|
|
class FORTNITEGAME_API UFortTextHotfixConfig : public UDeveloperSettings {
|
|
GENERATED_BODY()
|
|
public:
|
|
private:
|
|
UPROPERTY(BlueprintReadWrite, Config, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<FPolyglotTextData> TextReplacements;
|
|
|
|
public:
|
|
UFortTextHotfixConfig();
|
|
};
|
|
|