File size: 446 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | // Copyright Epic Games, Inc. All Rights Reserved.
#include "IndicatorLibrary.h"
#include "LyraIndicatorManagerComponent.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(IndicatorLibrary)
class AController;
UIndicatorLibrary::UIndicatorLibrary()
{
}
ULyraIndicatorManagerComponent* UIndicatorLibrary::GetIndicatorManagerComponent(AController* Controller)
{
return ULyraIndicatorManagerComponent::GetComponent(Controller);
}
|