mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-01 06:27:26 +00:00
12 lines
231 B
C++
12 lines
231 B
C++
#include "ZBarrierCommon.h"
|
|
|
|
#include <format>
|
|
|
|
namespace z_barrier
|
|
{
|
|
std::string GetFileNameForAssetName(const std::string& assetName)
|
|
{
|
|
return std::format("zbarrier/{}", assetName);
|
|
}
|
|
} // namespace z_barrier
|