17 lines
382 B
C++
17 lines
382 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "IndicatorLibrary.h"
|
|
|
|
#include "LyraIndicatorManagerComponent.h"
|
|
|
|
class AController;
|
|
|
|
UIndicatorLibrary::UIndicatorLibrary()
|
|
{
|
|
}
|
|
|
|
ULyraIndicatorManagerComponent* UIndicatorLibrary::GetIndicatorManagerComponent(AController* Controller)
|
|
{
|
|
return ULyraIndicatorManagerComponent::GetComponent(Controller);
|
|
}
|