Quake 4 integrated with DoomRTX

This commit is contained in:
Justin Marshall
2026-05-09 22:10:40 -07:00
parent 8c4a087aa9
commit d37f87e493
436 changed files with 277587 additions and 10254 deletions
+30
View File
@@ -0,0 +1,30 @@
//----------------------------------------------------------------
// 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