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

refactor: streamline physcollmap dumping

This commit is contained in:
Jan Laupetin
2025-08-03 21:29:06 +02:00
parent a442d2e49e
commit 93691a24f4
6 changed files with 107 additions and 94 deletions

View File

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

View File

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