mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 07:07:42 +00:00
Initial support for AssetNameMap
This commit is contained in:
17
DataSpec/AssetNameMap.hpp
Normal file
17
DataSpec/AssetNameMap.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef _DATASPEC_ASSETNAMEMAP_HPP_
|
||||
#define _DATASPEC_ASSETNAMEMAP_HPP_
|
||||
|
||||
#include <unordered_map>
|
||||
#include <string>
|
||||
#include "DNACommon/DNACommon.hpp"
|
||||
|
||||
namespace DataSpec
|
||||
{
|
||||
namespace AssetNameMap
|
||||
{
|
||||
void InitAssetNameMap();
|
||||
const std::string* TranslateIdToName(const UniqueID32&);
|
||||
const std::string* TranslateIdToName(const UniqueID64&);
|
||||
}
|
||||
}
|
||||
#endif // _DATASPEC_ASSETNAMEMAP_HPP_
|
||||
Reference in New Issue
Block a user