| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class AActor; | |
| class UIndicatorDescriptor; | |
| UINTERFACE(MinimalAPI, BlueprintType) | |
| class UIndicatorWidgetInterface : public UInterface | |
| { | |
| GENERATED_BODY() | |
| }; | |
| class IIndicatorWidgetInterface | |
| { | |
| GENERATED_BODY() | |
| public: | |
| UFUNCTION(BlueprintNativeEvent, Category = "Indicator") | |
| void BindIndicator(UIndicatorDescriptor* Indicator); | |
| UFUNCTION(BlueprintNativeEvent, Category = "Indicator") | |
| void UnbindIndicator(const UIndicatorDescriptor* Indicator); | |
| }; | |