You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Uses method of exposing a delegate for telemetry events to be registered by a StudioAnalytic provider implementation to avoid embedding schema in the engine * Generic templates for RAII scoped timed telemetry events added to aid in generating timed events #jira UE-155132 #rb Brooke.Hubert Wes.Hunt Ronald.Koppers #preflight 645022cdee56ca4c247ef92a [CL 25291458 by logan buchy in ue5-main branch]
22 lines
414 B
C#
22 lines
414 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CollectionManager : ModuleRules
|
|
{
|
|
public CollectionManager(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"DirectoryWatcher",
|
|
"Analytics",
|
|
"SourceControl"
|
|
}
|
|
);
|
|
}
|
|
}
|