mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-02-14 03:13:03 +00:00
13 lines
412 B
C++
13 lines
412 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace techset
|
|
{
|
|
std::string GetFileNameForStateMapName(const std::string& stateMapName);
|
|
std::string GetFileNameForTechniqueName(const std::string& assetName);
|
|
std::string GetFileNameForTechsetName(const std::string& assetName);
|
|
|
|
void CountWorldVertFormatParameters(const std::string& assetName, size_t& texCount, size_t& normalCount);
|
|
} // namespace techset
|