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

refactor: streamline phys preset dumping

This commit is contained in:
Jan Laupetin
2025-07-30 18:48:59 +01:00
parent d4ab0c4314
commit 24c9e08046
15 changed files with 258 additions and 234 deletions

View File

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

View File

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