mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2025-01-28 03:25:27 +01:00
02da650191
- added snes_gx 4.3.4
16 lines
210 B
C++
16 lines
210 B
C++
#ifndef _RAR_SAVEPOS_
|
|
#define _RAR_SAVEPOS_
|
|
|
|
class SaveFilePos
|
|
{
|
|
private:
|
|
File *SaveFile;
|
|
int64 SavePos;
|
|
uint CloseCount;
|
|
public:
|
|
SaveFilePos(File &SaveFile);
|
|
~SaveFilePos();
|
|
};
|
|
|
|
#endif
|