mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-07-26 18:00:38 +00:00
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:
@@ -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
|
||||
@@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace map_ents
|
||||
{
|
||||
std::string GetEntsFileNameForAssetName(const std::string& assetName);
|
||||
}
|
||||
Reference in New Issue
Block a user