mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-15 04:31:19 +00:00
15 lines
173 B
C++
15 lines
173 B
C++
#ifndef _CMEMORYCARD_HPP
|
|
#define _CMEMORYCARD_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CMemoryCard {
|
|
public:
|
|
~CMemoryCard();
|
|
// TODO
|
|
};
|
|
|
|
extern CMemoryCard* gpMemoryCard;
|
|
|
|
#endif
|