2022-05-23 18:41:30 +00:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
#include "IndicatorLibrary.h"
|
2022-09-13 07:18:28 +00:00
|
|
|
|
2022-05-23 18:41:30 +00:00
|
|
|
#include "LyraIndicatorManagerComponent.h"
|
|
|
|
|
2022-09-13 07:18:28 +00:00
|
|
|
class AController;
|
|
|
|
|
2022-05-23 18:41:30 +00:00
|
|
|
UIndicatorLibrary::UIndicatorLibrary()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ULyraIndicatorManagerComponent* UIndicatorLibrary::GetIndicatorManagerComponent(AController* Controller)
|
|
|
|
{
|
|
|
|
return ULyraIndicatorManagerComponent::GetComponent(Controller);
|
|
|
|
}
|