mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-10 17:13:29 +00:00
17 lines
198 B
C++
17 lines
198 B
C++
#ifndef _CMEMORYCARDSYS_HPP
|
|
#define _CMEMORYCARDSYS_HPP
|
|
|
|
#include "types.h"
|
|
|
|
class CMemoryCardSys {
|
|
public:
|
|
~CMemoryCardSys();
|
|
|
|
private:
|
|
// TODO
|
|
};
|
|
|
|
extern CMemoryCardSys* gpMemoryCard;
|
|
|
|
#endif
|