2022-09-13 04:26:54 +00:00
|
|
|
#ifndef _CMEMORYCARD_HPP
|
|
|
|
#define _CMEMORYCARD_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2022-10-02 10:13:35 +00:00
|
|
|
#include "MetroidPrime/TGameTypes.hpp"
|
|
|
|
#include "Kyoto/CObjectReference.hpp"
|
|
|
|
|
2022-09-13 04:26:54 +00:00
|
|
|
class CMemoryCard {
|
2022-10-01 06:19:09 +00:00
|
|
|
public:
|
|
|
|
~CMemoryCard();
|
2022-09-13 04:26:54 +00:00
|
|
|
// TODO
|
2022-10-02 10:13:35 +00:00
|
|
|
|
|
|
|
rstl::pair<CAssetId, TAreaId> GetAreaAndWorldIdForSaveId(s32 saveId) const;
|
2022-09-13 04:26:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern CMemoryCard* gpMemoryCard;
|
|
|
|
|
2022-09-18 06:05:46 +00:00
|
|
|
#endif
|