mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-13 18:19:04 +00:00
12 lines
249 B
C++
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
|