Files
UnrealEngine/Samples/Games/Lyra/Plugins/GameSettings/Source/Public/Widgets/IGameSettingActionInterface.h
2025-05-18 13:04:45 +08:00

33 lines
632 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GameplayTagContainer.h"
#include "UObject/Interface.h"
#include "IGameSettingActionInterface.generated.h"
#define UE_API GAMESETTINGS_API
class UGameSetting;
class UObject;
struct FFrame;
UINTERFACE(MinimalAPI, meta = (BlueprintType))
class UGameSettingActionInterface : public UInterface
{
GENERATED_UINTERFACE_BODY()
};
class IGameSettingActionInterface
{
GENERATED_BODY()
public:
/** */
UFUNCTION(BlueprintCallable, BlueprintNativeEvent)
UE_API bool ExecuteActionForSetting(FGameplayTag ActionTag, UGameSetting* InSetting);
};
#undef UE_API