mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-24 05:32:06 +00:00
12 lines
259 B
C++
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
|