unitysamples / LyraStarterGame /Plugins /GameSettings /Source /Public /Widgets /Misc /GameSettingRotator.h
| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class UObject; | |
| /** | |
| * | |
| */ | |
| UCLASS(MinimalAPI, Abstract, meta = (Category = "Settings", DisableNativeTick)) | |
| class UGameSettingRotator : public UCommonRotator | |
| { | |
| GENERATED_BODY() | |
| public: | |
| UE_API UGameSettingRotator(const FObjectInitializer& Initializer); | |
| UE_API void SetDefaultOption(int32 DefaultOptionIndex); | |
| protected: | |
| UFUNCTION(BlueprintImplementableEvent, Category = Events, meta = (DisplayName = "On Default Option Specified")) | |
| UE_API void BP_OnDefaultOptionSpecified(int32 DefaultOptionIndex); | |
| }; | |