]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/client/hud/panel/scoreboard.qh
Purge autocvars.qh from the client-side codebase, cvars are defined in the headers...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / client / hud / panel / scoreboard.qh
1 #pragma once
2 #include "../panel.qh"
3
4 bool autocvar_cl_deathscoreboard;
5 string autocvar_scoreboard_columns;
6
7 bool scoreboard_showscores;
8
9 bool scoreboard_active;
10 float scoreboard_fade_alpha;
11 float scoreboard_acc_fade_alpha;
12
13 void Cmd_Scoreboard_SetFields(int argc);
14 void Scoreboard_Draw();
15 void Scoreboard_InitScores();
16 void Scoreboard_UpdatePlayerTeams();
17 void Scoreboard_UpdatePlayerPos(entity pl);
18 void Scoreboard_UpdateTeamPos(entity Team);
19 bool Scoreboard_WouldDraw();