2007-02-03 19:37:19 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// $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
|
2002-04-07 12:49:53 +00:00
|
|
|
|
2002-06-16 20:06:15 +00:00
|
|
|
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);
|
2002-06-16 20:06:15 +00:00
|
|
|
void MM_TeamName_f(gentity_t *);
|
|
|
|
void MM_TeamModel_f(gentity_t *);
|
|
|
|
void MM_Referee_f(gentity_t *);
|
2002-07-04 04:20:41 +00:00
|
|
|
void MM_Settings_f(gentity_t *);
|
2009-07-04 03:37:41 +00:00
|
|
|
void SendEndMessage( void );
|
|
|
|
void MM_ResetMatch( void );
|
2002-02-03 21:23:51 +00:00
|
|
|
|
2002-03-07 00:00:54 +00:00
|
|
|
// aasimon: Declarations for Ref system
|
2002-06-16 20:06:15 +00:00
|
|
|
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 *);
|
2002-08-23 14:25:05 +00:00
|
|
|
extern gentity_t* refVotes[2];
|