Files
ArenaFPS/Source/LyraGame/UI/IndicatorSystem/IndicatorLibrary.cpp
2025-11-17 21:49:11 +00:00

20 lines
427 B
C++

// 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);
}