mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-13 07:58:04 +00:00
28 lines
681 B
C++
28 lines
681 B
C++
#pragma once
|
|
|
|
#include "resourcefile.h"
|
|
|
|
bool OpenSaveGameForWrite(const char *fname, const char *name);
|
|
bool OpenSaveGameForRead(const char *name);
|
|
|
|
FileWriter *WriteSavegameChunk(const char *name);
|
|
FileReader ReadSavegameChunk(const char *name);
|
|
|
|
bool FinishSavegameWrite();
|
|
void FinishSavegameRead();
|
|
|
|
// Savegame utilities
|
|
class FileReader;
|
|
|
|
FString G_BuildSaveName (const char *prefix);
|
|
int G_ValidateSavegame(FileReader &fr, FString *savetitle, bool formenu);
|
|
|
|
void G_LoadGame(const char* filename);
|
|
void G_SaveGame(const char* fn, const char* desc, bool ok4q, bool forceq);
|
|
|
|
void SaveEngineState();
|
|
void LoadEngineState();
|
|
void M_Autosave();
|
|
|
|
#define SAVEGAME_EXT ".dsave"
|
|
|