mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +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();
|