mirror of
https://github.com/DrBeef/QVR.git
synced 2024-11-14 16:30:53 +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
|