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

refactor: streamline vehicle dumping

This commit is contained in:
Jan Laupetin
2025-07-31 19:24:28 +01:00
parent d05f4fd43e
commit ab118f3528
9 changed files with 130 additions and 103 deletions

View File

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

View File

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