26 lines
481 B
C#
26 lines
481 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class MusicEnvironment : ModuleRules
|
|
{
|
|
public MusicEnvironment(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"TimeManagement",
|
|
"GameplayTags",
|
|
"MovieScene",
|
|
}
|
|
);
|
|
}
|
|
}
|