mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-01-24 08:53:04 +00:00
10 lines
239 B
C++
10 lines
239 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace shader
|
|
{
|
|
std::string GetFileNameForPixelShaderAssetName(const std::string& assetName);
|
|
std::string GetFileNameForVertexShaderAssetName(const std::string& assetName);
|
|
} // namespace shader
|