X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fsys-post.qh;h=a74e521ab0c935e48a92b0ef9546099e9e3b9b59;hb=118e6c304a242d2de95978fdbf593a62c9d86073;hp=9c389da4392455956528709533d398bcf1af8ee1;hpb=bf20397b0c62c9de0335ef9d70d60842fde9d0b2;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/sys-post.qh b/qcsrc/server/sys-post.qh index 9c389da43..a74e521ab 100644 --- a/qcsrc/server/sys-post.qh +++ b/qcsrc/server/sys-post.qh @@ -1,6 +1,5 @@ -#pragma noref 0 +#pragma once -#undef ATTEN_NORM #undef objerror #undef droptofloor #undef sound @@ -9,6 +8,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