//---------------------------------------------------------------- // StatWindow.h // // Copyright 2002-2005 Raven Software //---------------------------------------------------------------- #ifndef __STATWINDOW_H__ #define __STATWINDOW_H__ /* =============================================================================== Stat selection window =============================================================================== */ class rvStatWindow { public: rvStatWindow(); void SetupStatWindow( idUserInterface* statHud, bool useSpectator = false ); void SelectPlayer( int clientNum ); int ClientNumFromSelection( int selectionIndex, int selectionTeam ); void ClearWindow( void ); int GetSelectedClientNum( int* selectionIndexOut, int* selectionTeamOut ); private: idList stroggPlayers; idList marinePlayers; idList players; idList spectators; idUserInterface* statHud; }; #endif