X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Flib%2Fcsqcmodel%2Fcl_player.qh;h=af708da25170f30287fb59507dc3c17c75034dca;hb=969dc49d01d650a812706aba16c765af488605d0;hp=5b12dfa12cf7b60bbb6da8039c9057c58fbcefc2;hpb=1cbef966e133966c5b5f0f5b58fbd1a5851ed35b;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/lib/csqcmodel/cl_player.qh b/qcsrc/lib/csqcmodel/cl_player.qh index 5b12dfa12..af708da25 100644 --- a/qcsrc/lib/csqcmodel/cl_player.qh +++ b/qcsrc/lib/csqcmodel/cl_player.qh @@ -19,8 +19,9 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ -#ifndef LIB_CSQCMODEL_CL_PLAYER_H -#define LIB_CSQCMODEL_CL_PLAYER_H +#pragma once + +bool autocvar_cl_movement = true; entity csqcplayer; float csqcplayer_status; @@ -34,10 +35,7 @@ const int PMF_JUMP_HELD = 1; //const int PMF_DUCKED = 4; //const int PMF_ONGROUND = 8; -const int FL_DUCKED = 524288; - void CSQCPlayer_SetCamera(); float CSQCPlayer_PreUpdate(entity this); float CSQCPlayer_PostUpdate(entity this); float CSQCPlayer_IsLocalPlayer(entity this); -#endif