2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-23 13:12:06 +00:00
Files
OpenAssetTools/src/ObjCommon/LightDef/LightDefCommon.cpp
2025-07-28 21:51:12 +01:00

12 lines
225 B
C++

#include "LightDefCommon.h"
#include <format>
namespace light_def
{
std::string GetFileNameForAsset(const std::string& assetName)
{
return std::format("lights/{}", assetName);
}
} // namespace light_def