Files
Cog/Plugins/CogAll/Source/CogAll/CogAll.Build.cs
T
Arnaud Jamin 32ca4dc2ba Rename CogWindow plugin to Cog.
Fix Config saving not working
2025-02-12 13:56:06 -05:00

25 lines
566 B
C#

using UnrealBuildTool;
public class CogAll : ModuleRules
{
public CogAll(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(
new []
{
"Core",
"CoreUObject",
"CogCommon",
"CogAbility",
"CogAI",
"CogEngine",
"CogInput",
"Cog",
"Engine",
}
);
}
}