| 3 | using UnrealBuildTool; |
| 4 | |
| 5 | public class MassSampleProject : ModuleRules |
| 6 | { |
| 7 | public MassSampleProject(ReadOnlyTargetRules Target) : base(Target) |
| 8 | { |
| 9 | PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; |
| 10 | |
| 11 | PublicIncludePaths.AddRange( |
| 12 | new string[] { |
| 13 | "MassSampleProject" |
| 14 | } |
| 15 | ); |
| 16 | PublicDependencyModuleNames.AddRange( |
| 17 | new string[] { |
| 18 | "Core", |
| 19 | "CoreUObject", |
| 20 | "Engine", |
| 21 | "InputCore" |
| 22 | } |
| 23 | ); |
| 24 | |
| 25 | } |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected