mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 21:12:20 +00:00
ba117554b0
Since the code is extremely volatile I changed the setup so that the save is a zip file with the regular snapshot plus all added data as separate entries. This allows compressing everything properly without savegame breaking interference. Blood does not yet load its savegames, need to check.
11 lines
254 B
C
11 lines
254 B
C
#pragma once
|
|
#include "files.h"
|
|
|
|
void STAT_StartNewGame(const char *episode, int skill);
|
|
void STAT_NewLevel(const char* mapname);
|
|
void STAT_Update(bool endofgame);
|
|
void STAT_Cancel();
|
|
|
|
void InitStatistics();
|
|
void SaveStatistics();
|
|
bool ReadStatistics();
|