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
+36
View File
@@ -0,0 +1,36 @@
//----------------------------------------------------------------
// 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<idPlayer*> stroggPlayers;
idList<idPlayer*> marinePlayers;
idList<idPlayer*> players;
idList<idPlayer*> spectators;
idUserInterface* statHud;
};
#endif