mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
13 lines
296 B
C
13 lines
296 B
C
|
#pragma once
|
||
|
|
||
|
#include "filesystem/resourcefile.h"
|
||
|
|
||
|
void OpenSaveGameForWrite(const char *name);
|
||
|
bool OpenSaveGameForRead(const char *name);
|
||
|
|
||
|
FileWriter *WriteSavegameChunk(const char *name);
|
||
|
FileReader ReadSavegameChunk(const char *name);
|
||
|
|
||
|
bool FinishSavegameWrite();
|
||
|
void FinishSavegameRead();
|