Fixes a few warnings.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1438 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
c9753b0f99
commit
6725456402
2 changed files with 13 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
|||
#define _Q3DEFS_H_
|
||||
#define PROTOCOL_VERSION_Q3 68
|
||||
|
||||
int StringKey( const char *string, int length );
|
||||
|
||||
typedef struct {
|
||||
qboolean allsolid; // if true, plane is not valid
|
||||
qboolean startsolid; // if true, the initial point was in a solid area
|
||||
|
@ -310,4 +312,13 @@ typedef struct {
|
|||
char name[MAX_QPATH];
|
||||
} fontInfo_t;
|
||||
|
||||
|
||||
void Netchan_TransmitNextFragment( netchan_t *chan );
|
||||
void Netchan_TransmitQ3( netchan_t *chan, int length, const qbyte *data );
|
||||
qboolean Netchan_ProcessQ3 (netchan_t *chan);
|
||||
|
||||
qboolean MSG_Q3_ReadDeltaEntity( const q3entityState_t *from, q3entityState_t *to, int number );
|
||||
void MSG_Q3_ReadDeltaPlayerstate( const q3playerState_t *from, q3playerState_t *to );
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -33,4 +33,6 @@ void GLV_UpdatePalette (void);
|
|||
void SWV_UpdatePalette (void);
|
||||
qboolean V_CheckGamma (void);
|
||||
void V_AddEntity(entity_t *in);
|
||||
void V_AddAxisEntity(entity_t *in);
|
||||
void V_AddEntity(entity_t *in);
|
||||
void V_AddLight (vec3_t org, float quant, float r, float g, float b);
|
||||
|
|
Loading…
Reference in a new issue