X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Programming-QuakeC-stuff-in-Xonotic.md;h=4561f418bfecd6938ed17dc489e8ef53b37f1f88;hb=15091f9d26c060b72c64e63f08888e9fa5badab6;hp=19cb2139ab38c8670a230060a67164ecd58e5d79;hpb=e2c194872c2798516a86561f067491fd1c699eda;p=xonotic%2Fxonotic.wiki.git 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. +