mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
dced173cda
Also cleaned up use of gAffectedSectors and gAffectedXWalls. These are merely needed as local worker variables, not as global persistent status.
29 lines
701 B
C++
29 lines
701 B
C++
#pragma once
|
|
|
|
#include "resourcefile.h"
|
|
#include "build.h"
|
|
|
|
extern FixedBitArray<MAXSPRITES> activeSprites;
|
|
|
|
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 M_Autosave();
|
|
|
|
#define SAVEGAME_EXT ".dsave"
|
|
|