| 12 | #include "Engine/Engine/Globals.h" |
| 13 | |
| 14 | String GetDebugDataPath() |
| 15 | { |
| 16 | auto result = Globals::ProjectCacheFolder / TEXT("ShadowsOfMordor_Debug"); |
| 17 | if (!FileSystem::DirectoryExists(result)) |
| 18 | FileSystem::CreateDirectory(result); |
| 19 | return result; |
| 20 | } |
| 21 | |
| 22 | #endif |
| 23 |
no outgoing calls
no test coverage detected