X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;ds=inline;f=qcsrc%2Fserver%2Fsys-post.qh;h=e24a790a148a2cdebbe4bf3c40302178e6ee6adb;hb=678388b78fdaad89fc8218dadf7007432b4153c3;hp=919ed6b8d95e93c3127739e2a0119cfccedbf1df;hpb=d9708336de4c01e81ea08bb205093b676b7cb882;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/sys-post.qh b/qcsrc/server/sys-post.qh index 919ed6b8d..e24a790a1 100644 --- a/qcsrc/server/sys-post.qh +++ b/qcsrc/server/sys-post.qh @@ -1,7 +1,5 @@ -#pragma noref 0 +#pragma once -#undef ATTN_NORM -#undef objerror #undef droptofloor #undef sound #undef remove @@ -9,6 +7,33 @@ #undef cvar_string #undef cvar -var float(string var) cvar; -var string(string var) cvar_string; -var void(string var, string val) cvar_set; +var float(string name) cvar; +var string(string name) cvar_string; +var void(string name, string value) cvar_set; +var void remove(entity e); + +#undef IT_SHOTGUN +#undef IT_SUPER_SHOTGUN +#undef IT_NAILGUN +#undef IT_SUPER_NAILGUN +#undef IT_GRENADE_LAUNCHER +#undef IT_ROCKET_LAUNCHER +#undef IT_LIGHTNING +#undef IT_EXTRA_WEAPON +#undef IT_SHELLS +#undef IT_NAILS +#undef IT_ROCKETS +#undef IT_CELLS +#undef IT_AXE +#undef IT_ARMOR1 +#undef IT_ARMOR2 +#undef IT_ARMOR3 +#undef IT_SUPERHEALTH +#undef IT_KEY1 +#undef IT_KEY2 +#undef IT_INVISIBILITY +#undef IT_INVULNERABILITY +#undef IT_SUIT +#undef IT_QUAD + +#pragma noref 0