feat: T4 MapEnts dumper (#865)

* feat: T4 MapEnts dumper

* chore: use common map_ents logic for filename

---------

Co-authored-by: Jan Laupetin <[email protected]>
This commit is contained in:
mo
2026-06-29 08:28:45 +02:00
committed by GitHub
co-authored by Jan Laupetin
parent 46e34b0036
commit 228e40d17f
8 changed files with 62 additions and 7 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "MapEntsCommon.h"
#include <format>
namespace map_ents
{
std::string GetEntsFileNameForAssetName(const std::string& assetName)
{
return std::format("{}.ents", assetName);
}
} // namespace map_ents
+8
View File
@@ -0,0 +1,8 @@
#pragma once
#include <string>
namespace map_ents
{
std::string GetEntsFileNameForAssetName(const std::string& assetName);
}