mirror of
https://github.com/libretro/libretro-tyrquake.git
synced 2025-02-20 16:03:40 +00:00
Move extern declaration from sv_ccmds.c to server.h
Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
parent
7d7be32729
commit
48a12a1b68
@ -423,9 +423,18 @@ void SV_RunNewmis(void);
|
||||
void SV_Impact(edict_t *e1, edict_t *e2);
|
||||
void SV_SetMoveVars(void);
|
||||
|
||||
//
|
||||
// svonly.c
|
||||
//
|
||||
typedef enum { RD_NONE, RD_CLIENT, RD_PACKET } redirect_t;
|
||||
void SV_BeginRedirect(redirect_t rd);
|
||||
void SV_EndRedirect(void);
|
||||
|
||||
//
|
||||
// sv_send.c
|
||||
//
|
||||
extern redirect_t sv_redirected;
|
||||
|
||||
void SV_SendClientMessages(void);
|
||||
|
||||
void SV_Multicast(vec3_t origin, int to);
|
||||
@ -447,14 +456,6 @@ void SV_ExecuteClientMessage(client_t *cl);
|
||||
void SV_UserInit(void);
|
||||
void SV_TogglePause(const char *msg);
|
||||
|
||||
|
||||
//
|
||||
// svonly.c
|
||||
//
|
||||
typedef enum { RD_NONE, RD_CLIENT, RD_PACKET } redirect_t;
|
||||
void SV_BeginRedirect(redirect_t rd);
|
||||
void SV_EndRedirect(void);
|
||||
|
||||
//
|
||||
// sv_ccmds.c
|
||||
//
|
||||
|
@ -25,10 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
#include "sys.h"
|
||||
#include "zone.h"
|
||||
|
||||
// FIXME - header hacks
|
||||
extern cvar_t cl_warncmd;
|
||||
extern redirect_t sv_redirected;
|
||||
|
||||
qboolean sv_allow_cheats;
|
||||
|
||||
int fp_messages = 4, fp_persecond = 4, fp_secondsdead = 10;
|
||||
|
Loading…
x
Reference in New Issue
Block a user