2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-23 05:12:05 +00:00
Files
OpenAssetTools/src/ObjCommon/PhysConstraints/PhysConstraintsCommon.cpp
2025-07-30 18:30:12 +01:00

12 lines
259 B
C++

#include "PhysConstraintsCommon.h"
#include <format>
namespace phys_constraints
{
std::string GetFileNameForAssetName(const std::string& assetName)
{
return std::format("physconstraints/{}", assetName);
}
} // namespace phys_constraints