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