mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
12 lines
293 B
C++
12 lines
293 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();
|
|
int STAT_GetTotalTime();
|
|
|
|
class FSerializer;
|
|
void InitStatistics();
|
|
void SerializeStatistics(FSerializer &);
|