]> git.xonotic.org Git - xonotic/darkplaces.git/blob - sv_demo.h
Add qdefs.h and qstats.h to split up quakedef.h. Make a lot of headers standalone...
[xonotic/darkplaces.git] / sv_demo.h
1 #ifndef SV_DEMO_H
2 #define SV_DEMO_H
3
4 #include "qtypes.h"
5 #include "common.h"
6 typedef struct client_s client_t;
7
8 void SV_StartDemoRecording(client_t *client, const char *filename, int forcetrack);
9 void SV_WriteDemoMessage(client_t *client, sizebuf_t *sendbuffer, qbool clienttoserver);
10 void SV_StopDemoRecording(client_t *client);
11 void SV_WriteNetnameIntoDemo(client_t *client);
12
13 #endif