2022-05-23 18:41:30 +00:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Kismet/BlueprintFunctionLibrary.h"
|
2022-09-13 07:18:28 +00:00
|
|
|
#include "UObject/UObjectGlobals.h"
|
|
|
|
|
2022-05-23 18:41:30 +00:00
|
|
|
#include "IndicatorLibrary.generated.h"
|
|
|
|
|
2022-09-13 07:18:28 +00:00
|
|
|
class AController;
|
2022-05-23 18:41:30 +00:00
|
|
|
class ULyraIndicatorManagerComponent;
|
2022-09-13 07:18:28 +00:00
|
|
|
class UObject;
|
|
|
|
struct FFrame;
|
2022-05-23 18:41:30 +00:00
|
|
|
|
|
|
|
UCLASS()
|
|
|
|
class LYRAGAME_API UIndicatorLibrary : public UBlueprintFunctionLibrary
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
public:
|
|
|
|
UIndicatorLibrary();
|
|
|
|
|
|
|
|
/** */
|
|
|
|
UFUNCTION(BlueprintCallable, Category = Indicator)
|
|
|
|
static ULyraIndicatorManagerComponent* GetIndicatorManagerComponent(AController* Controller);
|
|
|
|
};
|