2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-01 06:27:26 +00:00
Files
OpenAssetTools/src/ObjCommon/Techset/TechsetCommon.cpp
2025-08-03 21:35:44 +02:00

17 lines
384 B
C++

#include "TechsetCommon.h"
#include <format>
namespace techset
{
std::string GetFileNameForTechniqueName(const std::string& assetName)
{
return std::format("techniques/{}.tech", assetName);
}
std::string GetFileNameForTechsetName(const std::string& assetName)
{
return std::format("techsets/{}.techset", assetName);
}
} // namespace techset