2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-05 16:27:27 +00:00

refactor: restructure light def dumper

This commit is contained in:
Jan Laupetin
2025-07-28 21:51:12 +01:00
parent 5fefdef0a6
commit 9a6f0c8919
9 changed files with 62 additions and 50 deletions

View File

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

View File

@@ -0,0 +1,8 @@
#pragma once
#include <string>
namespace light_def
{
std::string GetFileNameForAsset(const std::string& assetName);
}