| 103 | } |
| 104 | |
| 105 | fs::path promptDirectory([[maybe_unused]] const std::string& Title, [[maybe_unused]] void* hwnd) |
| 106 | { |
| 107 | std::string input; |
| 108 | std::cout << "Type your Locomotion path: "; |
| 109 | std::cin >> input; |
| 110 | |
| 111 | auto path = fs::canonical(input); |
| 112 | return path; |
| 113 | } |
| 114 | #endif // !(defined(__APPLE__) && defined(__MACH__)) |
| 115 | |
| 116 | bool isRunningInWine() |
no outgoing calls
no test coverage detected