mirror of
https://github.com/DrBeef/QuakeQuest.git
synced 2024-11-24 13:01:51 +00:00
10 lines
314 B
C
10 lines
314 B
C
|
#ifndef SV_DEMO_H
|
||
|
#define SV_DEMO_H
|
||
|
|
||
|
void SV_StartDemoRecording(client_t *client, const char *filename, int forcetrack);
|
||
|
void SV_WriteDemoMessage(client_t *client, sizebuf_t *sendbuffer, qboolean clienttoserver);
|
||
|
void SV_StopDemoRecording(client_t *client);
|
||
|
void SV_WriteNetnameIntoDemo(client_t *client);
|
||
|
|
||
|
#endif
|