mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 13:01:21 +00:00
985e441d80
Now everything is in place to transition the rest of the savegame code as well.
11 lines
268 B
C++
11 lines
268 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();
|
|
|
|
class FSerializer;
|
|
void InitStatistics();
|
|
void SerializeStatistics(FSerializer &);
|