| 12 | namespace TEN::Utils |
| 13 | { |
| 14 | float ToMegabytes(unsigned long long bytes) |
| 15 | { |
| 16 | return (float)bytes / (1024.0f * 1024.0f); |
| 17 | } |
| 18 | |
| 19 | std::string ConstructAssetDirectory(std::string customDirectory) |
| 20 | { |
no outgoing calls
no test coverage detected