X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fclient%2Fhud.qh;h=db27a488f596218e091fc3cb2c4e5d2b245f9d12;hb=99e4fa0264127dfcf4675d5f645061b51af815e4;hp=37b38aa9bb6c6791796bbdc257b9b6bce0f2a19e;hpb=41e9b002169cd742d5eadd4c540f55164af7f120;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/client/hud.qh b/qcsrc/client/hud.qh index 37b38aa9b..db27a488f 100644 --- a/qcsrc/client/hud.qh +++ b/qcsrc/client/hud.qh @@ -16,12 +16,6 @@ const float BORDER_MULTIPLIER = 0.25; float scoreboard_bottom; float weapon_accuracy[WEP_MAXCOUNT]; -#define MAX_ACCURACY_LEVELS 10 -float acc_lev[MAX_ACCURACY_LEVELS]; -vector acc_col[MAX_ACCURACY_LEVELS]; -float acc_levels; -string acc_color_levels; - float complain_weapon; string complain_weapon_name; float complain_weapon_type; @@ -53,6 +47,7 @@ float menu_enabled_time; float hud_fade_alpha; string hud_skin_path; +string hud_skin_prev; var vector progressbar_color; @@ -348,3 +343,12 @@ switch(id) { \ case HUD_PANEL_ENGINEINFO: HUD_Panel_UpdatePosSize(engineinfo) break;\ default: HUD_Panel_UpdatePosSizeForId_Part2(id)\ } + +#define KN_MAX_ENTRIES 10 + +float kn_index; +float notify_times[KN_MAX_ENTRIES]; +string notify_icon[KN_MAX_ENTRIES]; +string notify_attackers[KN_MAX_ENTRIES]; +string notify_victims[KN_MAX_ENTRIES]; +void HUD_Notify_Push(string icon, string attacker, string victim);