mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-25 10:36:53 +01:00
22 lines
419 B
C++
22 lines
419 B
C++
#pragma once
|
|
|
|
class C_PcSave
|
|
{
|
|
public:
|
|
int32 m_nHelper;
|
|
|
|
static void SetSaveDirectory(const char *path);
|
|
int8 PopulateSlotInfo();
|
|
int8 DeleteSlot(int);
|
|
int8 SaveSlot(int);
|
|
};
|
|
|
|
extern int8 CheckSlotDataValid(int);
|
|
extern wchar *GetNameOfSavedGame(int counter);
|
|
extern wchar *GetSavedGameDateAndTime(int counter);
|
|
|
|
extern C_PcSave PcSaveHelper;
|
|
extern int *Slots;
|
|
extern int *SlotFileName;
|
|
extern int *SlotSaveDate;
|