mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-23 05:12:05 +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
|