mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
17 lines
256 B
C++
17 lines
256 B
C++
#ifndef _CSAVEGAMESCREEN
|
|
#define _CSAVEGAMESCREEN
|
|
|
|
#include "types.h"
|
|
|
|
class CSaveGameScreen {
|
|
public:
|
|
CSaveGameScreen(int, uint, uint);
|
|
~CSaveGameScreen();
|
|
|
|
private:
|
|
char pad[0x98];
|
|
};
|
|
CHECK_SIZEOF(CSaveGameScreen, 0x98)
|
|
|
|
#endif // _CSAVEGAMESCREEN
|