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