X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=progs.h;h=2264ac11597b837b140437463c1302fbcb7acb10;hp=2d39385a6e76a55a8f9231478440ed0e0044b366;hb=7c9e24d521f756c4a46601b628e0a022d52b02a8;hpb=2275e4d0cab079f4a0849ba55b8f92023d6f3eab diff --git a/progs.h b/progs.h index 2d39385a..2264ac11 100644 --- a/progs.h +++ b/progs.h @@ -84,14 +84,20 @@ extern int eval_idealpitch; extern int eval_pitch_speed; extern int eval_viewmodelforclient; extern int eval_nodrawtoclient; +extern int eval_exteriormodeltoclient; extern int eval_drawonlytoclient; extern int eval_colormod; extern int eval_ping; extern int eval_movement; extern int eval_pmodel; +extern int eval_punchvector; #define GETEDICTFIELDVALUE(ed, fieldoffset) (fieldoffset ? (eval_t*)((char*)&ed->v + fieldoffset) : NULL) + +extern dfunction_t *SV_PlayerPhysicsQC; +extern dfunction_t *EndFrameQC; + //============================================================================ extern dprograms_t *progs; @@ -110,7 +116,7 @@ extern int pr_edictareasize; // LordHavoc: for bounds checking void PR_Init (void); -void PR_ExecuteProgram (func_t fnum); +void PR_ExecuteProgram (func_t fnum, char *errormessage); void PR_LoadProgs (void); void PR_Profile_f (void);