37 lines
955 B
C
37 lines
955 B
C
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "UObject/ObjectMacros.h"
|
||
|
#include "GameSettingValueDiscrete.h"
|
||
|
|
||
|
#include "LyraSettingValueDiscrete_Language.generated.h"
|
||
|
|
||
|
UCLASS()
|
||
|
class LYRAGAME_API ULyraSettingValueDiscrete_Language : public UGameSettingValueDiscrete
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
public:
|
||
|
|
||
|
ULyraSettingValueDiscrete_Language();
|
||
|
|
||
|
/** UGameSettingValue */
|
||
|
virtual void StoreInitial() override;
|
||
|
virtual void ResetToDefault() override;
|
||
|
virtual void RestoreToInitial() override;
|
||
|
|
||
|
/** UGameSettingValueDiscrete */
|
||
|
virtual void SetDiscreteOptionByIndex(int32 Index) override;
|
||
|
virtual int32 GetDiscreteOptionIndex() const override;
|
||
|
virtual TArray<FText> GetDiscreteOptions() const override;
|
||
|
|
||
|
protected:
|
||
|
/** UGameSettingValue */
|
||
|
virtual void OnInitialized() override;
|
||
|
virtual void OnApply() override;
|
||
|
|
||
|
protected:
|
||
|
TArray<FString> AvailableCultureNames;
|
||
|
};
|