metaforce/DataSpec/AssetNameMap.hpp

15 lines
366 B
C++
Raw Normal View History

2017-07-13 04:39:52 -07:00
#ifndef _DATASPEC_ASSETNAMEMAP_HPP_
#define _DATASPEC_ASSETNAMEMAP_HPP_
#include <unordered_map>
#include <string>
#include "DNACommon/DNACommon.hpp"
2017-12-29 00:08:12 -08:00
namespace DataSpec::AssetNameMap
2017-07-13 04:39:52 -07:00
{
void InitAssetNameMap();
const std::string* TranslateIdToName(const UniqueID32&);
const std::string* TranslateIdToName(const UniqueID64&);
}
#endif // _DATASPEC_ASSETNAMEMAP_HPP_