| 115 | }; |
| 116 | |
| 117 | String _get_platform_name() { |
| 118 | String platform_name = OS::get_singleton()->get_name(); |
| 119 | |
| 120 | int idx = 0; |
| 121 | while (platform_name_map[idx][0] != nullptr) { |
| 122 | if (platform_name_map[idx][0] == platform_name) { |
| 123 | return platform_name_map[idx][1]; |
| 124 | } |
| 125 | idx++; |
| 126 | } |
| 127 | |
| 128 | return ""; |
| 129 | } |
| 130 | #endif |
| 131 | |
| 132 | class _GodotSharpDirs { |
no test coverage detected