mirror of
https://github.com/diasurgical/devilution.git
synced 2026-05-21 05:40:54 +00:00
15 lines
246 B
C
15 lines
246 B
C
/**
|
|
* @file loadsave.h
|
|
*
|
|
* Interface of save game functionality.
|
|
*/
|
|
#ifndef __LOADSAVE_H__
|
|
#define __LOADSAVE_H__
|
|
|
|
void LoadGame(BOOL firstflag);
|
|
void SaveGame();
|
|
void SaveLevel();
|
|
void LoadLevel();
|
|
|
|
#endif /* __LOADSAVE_H__ */
|