X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fcsqcmodellib%2Fcl_player.qh;h=92ac5481e9cd31d24330a5dd0b04dacb7346d153;hp=881ad3b329bc30100cc677b0214a72dfeb9454ec;hb=a08620064dbe59abd194f302768d65934b87b6df;hpb=5c261e6c8b328196282545db4b6d1b85df2a12d5 diff --git a/qcsrc/csqcmodellib/cl_player.qh b/qcsrc/csqcmodellib/cl_player.qh index 881ad3b329..92ac5481e9 100644 --- a/qcsrc/csqcmodellib/cl_player.qh +++ b/qcsrc/csqcmodellib/cl_player.qh @@ -22,9 +22,15 @@ entity csqcplayer; float csqcplayer_status; -#define CSQCPLAYERSTATUS_UNPREDICTED 0 -#define CSQCPLAYERSTATUS_FROMSERVER 1 -#define CSQCPLAYERSTATUS_PREDICTED 2 +const int CSQCPLAYERSTATUS_UNPREDICTED = 0; +const int CSQCPLAYERSTATUS_FROMSERVER = 1; +const int CSQCPLAYERSTATUS_PREDICTED = 2; + +// only ever READ these! +.int pmove_flags; +const int PMF_JUMP_HELD = 1; +//const int PMF_DUCKED = 4; +//const int PMF_ONGROUND = 8; void CSQCPlayer_SetCamera(); float CSQCPlayer_PreUpdate();