]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sv_demo.h
Merge PR 'sv_gameplayfix_stepmultipletimes 1: Prevent players moving too far/fast...
[xonotic/darkplaces.git] / sv_demo.h
index 8dbbd65f700ebec6e10be7e106308dcbd7faf606..fed19257654d7c0555a42f078e4a6210c00599c3 100644 (file)
--- a/sv_demo.h
+++ b/sv_demo.h
@@ -1,9 +1,13 @@
 #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, qbool clienttoserver);
-void SV_StopDemoRecording(client_t *client);
-void SV_WriteNetnameIntoDemo(client_t *client);
+#include "qtypes.h"
+struct sizebuf_s;
+struct client_s;
+
+void SV_StartDemoRecording(struct client_s *client, const char *filename, int forcetrack);
+void SV_WriteDemoMessage(struct client_s *client, struct sizebuf_s *sendbuffer, qbool clienttoserver);
+void SV_StopDemoRecording(struct client_s *client);
+void SV_WriteNetnameIntoDemo(struct client_s *client);
 
 #endif