mirror of
https://github.com/Ed94/Cog.git
synced 2026-08-04 22:58:45 +00:00
CogEngine: refactor Selection window to share the actor list with other windows such as the Collision Tester window
This commit is contained in:
@@ -4,32 +4,16 @@ public class CogEngine : ModuleRules
|
||||
{
|
||||
public CogEngine(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
|
||||
PublicIncludePaths.AddRange(
|
||||
new string[]
|
||||
{
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
PrivateIncludePaths.AddRange(
|
||||
new string[]
|
||||
{
|
||||
}
|
||||
);
|
||||
|
||||
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||
|
||||
PublicDependencyModuleNames.AddRange(
|
||||
new string[]
|
||||
new []
|
||||
{
|
||||
"CogDebug",
|
||||
}
|
||||
);
|
||||
|
||||
});
|
||||
|
||||
PrivateDependencyModuleNames.AddRange(
|
||||
new string[]
|
||||
new []
|
||||
{
|
||||
"CogCommon",
|
||||
"CogImgui",
|
||||
@@ -41,14 +25,16 @@ public class CogEngine : ModuleRules
|
||||
"NetCore",
|
||||
"Slate",
|
||||
"SlateCore",
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
DynamicallyLoadedModuleNames.AddRange(
|
||||
new string[]
|
||||
if (Target.bBuildEditor)
|
||||
{
|
||||
PrivateDependencyModuleNames.AddRange(
|
||||
new []
|
||||
{
|
||||
}
|
||||
);
|
||||
"AssetTools"
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user