| 3 | using UnrealBuildTool; |
| 4 | |
| 5 | public class OceanProject : ModuleRules |
| 6 | { |
| 7 | public OceanProject(ReadOnlyTargetRules Target) : base(Target) |
| 8 | { |
| 9 | PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" }); |
| 10 | |
| 11 | PrivateDependencyModuleNames.AddRange(new string[] { }); |
| 12 | |
| 13 | PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; |
| 14 | } |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected