mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-26 13:51:15 +00:00
23 lines
883 B
C
23 lines
883 B
C
|
@extern void() BotInit;
|
||
|
@extern void() BotFrame;
|
||
|
@extern float () BotPreFrame;
|
||
|
@extern float () BotPostFrame;
|
||
|
@extern void() ClientInRankings;
|
||
|
@extern void() ClientDisconnected;
|
||
|
@extern void() ClientFixRankings;
|
||
|
|
||
|
@extern void(entity client, string s) stuffcmd;
|
||
|
@extern void(entity e) setspawnparms;
|
||
|
@extern void(entity client, float level, string s) sprint;
|
||
|
@extern void(entity client, string s) centerprint;
|
||
|
@extern vector(entity e, float sped) aim;
|
||
|
@extern void(entity e, float chan, string samp, float vol, float atten) sound;
|
||
|
@extern void(float to, float f) WriteByte;
|
||
|
@extern void(float to, float f) WriteChar;
|
||
|
@extern void(float to, float f) WriteShort;
|
||
|
@extern void(float to, float f) WriteLong;
|
||
|
@extern void(float to, float f) WriteCoord;
|
||
|
@extern void(float to, float f) WriteAngle;
|
||
|
@extern void(float to, string s) WriteString;
|
||
|
@extern void(float to, entity s) WriteEntity;
|