mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 13:47:43 +00:00
Finish CPakFile and CResLoader
This commit is contained in:
27
Runtime/MP1/MP1OriginalIDs.hpp
Normal file
27
Runtime/MP1/MP1OriginalIDs.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef URDE_MP1ORIGINALIDS_HPP
|
||||
#define URDE_MP1ORIGINALIDS_HPP
|
||||
|
||||
#include "RetroTypes.hpp"
|
||||
#include "IFactory.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class MP1OriginalIDs
|
||||
{
|
||||
std::vector<std::pair<CAssetId, CAssetId>> m_origToNew;
|
||||
std::vector<std::pair<CAssetId, CAssetId>> m_newToOrig;
|
||||
|
||||
public:
|
||||
MP1OriginalIDs(CInputStream& in);
|
||||
CAssetId TranslateOriginalToNew(CAssetId id) const;
|
||||
CAssetId TranslateNewToOriginal(CAssetId id) const;
|
||||
};
|
||||
|
||||
CFactoryFnReturn FMP1OriginalIDsFactory(const SObjectTag& tag, CInputStream& in,
|
||||
const CVParamTransfer& param,
|
||||
CObjectReference* selfRef);
|
||||
|
||||
}
|
||||
|
||||
#endif // URDE_MP1ORIGINALIDS_HPP
|
||||
Reference in New Issue
Block a user