mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-04-12 10:41:56 +00:00
add declarations for SV_UserCmd
This commit is contained in:
parent
464ea26cba
commit
454ff21260
2 changed files with 7 additions and 0 deletions
|
@ -159,6 +159,7 @@ entity () SV_AllocClient = #0;
|
|||
void (entity e) SV_FreeClient = #0;
|
||||
void (entity e, string str) SV_SetUserinfo = #0;
|
||||
void (entity e, integer ping) SV_SetPing = #0;
|
||||
void (entity cl, float sec, vector angles, vector move, integer buttons, integer impulse) SV_UserCmd = #0;
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
||||
|
|
|
@ -348,4 +348,10 @@
|
|||
@extern void(string h) BotSayTeam;
|
||||
@extern void(entity e1, entity e2, float flag) DeveloperLightning;
|
||||
|
||||
/*
|
||||
angles is pitch yaw roll
|
||||
move is forward right up
|
||||
*/
|
||||
@extern void (entity cl, float sec, vector angles, vector move, integer buttons, integer impulse) SV_UserCmd;
|
||||
|
||||
#include "defs.h"
|
||||
|
|
Loading…
Reference in a new issue