home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2006 March
/
Gamestar_82_2006-03_dvd.iso
/
DVDStar
/
Editace
/
quake4_sdkv10.exe
/
source
/
game
/
IconManager.h
< prev
next >
Wrap
C/C++ Source or Header
|
2005-11-14
|
701b
|
31 lines
//----------------------------------------------------------------
// IconManager.h
//
// Copyright 2002-2004 Raven Software
//----------------------------------------------------------------
#ifndef __ICONMANAGER_H__
#define __ICONMANAGER_H__
#include "Icon.h"
const int ICON_STAY_TIME = 2000;
class rvIconManager {
public:
void AddIcon( int clientNum, const char* iconName );
void UpdateIcons( void );
void UpdateTeamIcons( void );
void UpdateChatIcons( void );
void Shutdown( void );
private:
idList<rvPair<rvIcon*, int> > icons[ MAX_CLIENTS ];
rvIcon teamIcons[ MAX_CLIENTS ];
rvIcon chatIcons[ MAX_CLIENTS ];
};
extern rvIconManager* iconManager;
#endif