2
0
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:
2017-07-13 04:39:52 -07:00
parent daef773f39
commit ce7e913094
4 changed files with 117 additions and 0 deletions

17
DataSpec/AssetNameMap.hpp Normal file
View 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_