2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-10-13 18:19:04 +00:00
Files
OpenAssetTools/src/ObjCommon/PhysCollmap/PhysCollmapCommon.cpp
2025-08-03 21:29:06 +02:00

12 lines
249 B
C++

#include "PhysCollmapCommon.h"
#include <format>
namespace phys_collmap
{
std::string GetFileNameForAssetName(const std::string& assetName)
{
return std::format("phys_collmaps/{}.map", assetName);
}
} // namespace phys_collmap