From 15091f9d26c060b72c64e63f08888e9fa5badab6 Mon Sep 17 00:00:00 2001 From: LegendaryGuard Date: Thu, 4 Mar 2021 23:04:25 +0000 Subject: [PATCH] Added hud_ cvars part in CSQC, MENUQC, SVQC and GAMEQC blocks section --- Programming-QuakeC-stuff-in-Xonotic.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Programming-QuakeC-stuff-in-Xonotic.md b/Programming-QuakeC-stuff-in-Xonotic.md index 19cb213..4561f41 100644 --- a/Programming-QuakeC-stuff-in-Xonotic.md +++ b/Programming-QuakeC-stuff-in-Xonotic.md @@ -30,6 +30,10 @@ Example: `sv_campcheck` is clearly a server cvar (**sv_*** cvars are server cvar Example: `cl_chatsound` is clearly a client cvar (**cl_*** cvars are client cvars), only can be declared inside a **`#ifdef CSQC`** block. +- **hud_*** cvars: + +Example: `hud_progressbar_alpha` is a client cvar (**hud_*** cvars belong to client cvars), only can be declared inside a **`#ifdef CSQC`** block. +
-- 2.39.2