prime/include/MetroidPrime/CMemoryCard.hpp
Luke Street adb54a9892 Symbol fixes, headers & main progress
Former-commit-id: 6944a14e890aff84111901c37e9a7b96a3e38517
2022-10-01 02:19:15 -04:00

15 lines
173 B
C++

#ifndef _CMEMORYCARD_HPP
#define _CMEMORYCARD_HPP
#include "types.h"
class CMemoryCard {
public:
~CMemoryCard();
// TODO
};
extern CMemoryCard* gpMemoryCard;
#endif