reaction/code/game/g_matchmode.h

44 lines
1.2 KiB
C
Raw Normal View History

//-----------------------------------------------------------------------------
//
// $Id$
//
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.16 2007/02/03 19:37:19 jbravo
// Adding CVS headers to new files in CVS.
//
//
//-----------------------------------------------------------------------------
2002-06-23 19:12:17 +00:00
#define MM_OK_COLOR S_COLOR_GREEN
#define MM_DENY_COLOR S_COLOR_RED
#define MM_NAMES_COLOR S_COLOR_BLUE
#define MM_OK_COLOR S_COLOR_GREEN
//g_RQ3_mmflags
#define MMF_TEAMNAME 1
#define MMF_TEAMMODEL 2
#define MMF_UNREADY 4
#define MMF_SETTINGS 8
#define MMF_VOTEREF 16
void MM_RunFrame(void);
void MM_Captain_f(gentity_t *);
void MM_Sub_f(gentity_t *);
void MM_Ready_f(gentity_t *);
2002-08-02 22:44:37 +00:00
void MM_ClearScores(qboolean);
void MM_TeamName_f(gentity_t *);
void MM_TeamModel_f(gentity_t *);
void MM_Referee_f(gentity_t *);
void MM_Settings_f(gentity_t *);
2009-07-04 03:37:41 +00:00
void SendEndMessage( void );
void MM_ResetMatch( void );
// aasimon: Declarations for Ref system
qboolean Ref_Exists(void);
qboolean Ref_Auth(gentity_t *); // No need to return a boolean in this context
void Ref_Command(gentity_t *);
void Ref_Resign(gentity_t *);
extern gentity_t* refVotes[2];