Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
505 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "AnalyticsLog.h"
#include "AnalyticsProviderLog.h"
IMPLEMENT_MODULE( FAnalyticsLog, AnalyticsLog );
void FAnalyticsLog::StartupModule()
{
}
void FAnalyticsLog::ShutdownModule()
{
}
TSharedPtr<IAnalyticsProvider> FAnalyticsLog::CreateAnalyticsProvider(const FAnalyticsProviderConfigurationDelegate& GetConfigValue) const
{
if (GetConfigValue.IsBound())
{
return MakeShared<FAnalyticsProviderLog>(GetConfigValue);
}
return nullptr;
}