]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - common.h
made quakec stuffed quake1 protocol entities work alongside newer protocols, to attem...
[xonotic/darkplaces.git] / common.h
index b6272a80bb5fac9b55ea6f38ae648972861b6031..f367ef66f705dae53b8894e93ca31a2e595084d6 100644 (file)
--- a/common.h
+++ b/common.h
@@ -123,6 +123,7 @@ void MSG_WriteCoord16i (sizebuf_t *sb, float f);
 void MSG_WriteCoord32f (sizebuf_t *sb, float f);
 void MSG_WriteCoord (sizebuf_t *sb, float f, int protocol);
 void MSG_WriteVector (sizebuf_t *sb, float *v, int protocol);
+void MSG_WriteAngle (sizebuf_t *sb, float f, int protocol);
 
 extern int                     msg_readcount;
 extern qboolean        msg_badread;            // set if a read goes beyond end of message
@@ -151,6 +152,7 @@ float MSG_ReadCoord16i (void);
 float MSG_ReadCoord32f (void);
 float MSG_ReadCoord (int protocol);
 void MSG_ReadVector (float *v, int protocol);
+float MSG_ReadAngle (int protocol);
 
 //============================================================================