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

refactor: streamline tracer dumper

This commit is contained in:
Jan Laupetin
2025-07-30 23:29:08 +01:00
parent ea1c232164
commit d05f4fd43e
11 changed files with 207 additions and 180 deletions

View File

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

View File

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