mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-01 06:27:26 +00:00
17 lines
384 B
C++
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
|