]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - progs.h
made sure EF_FULLBRIGHT works on everything (bmodels were broken)
[xonotic/darkplaces.git] / progs.h
diff --git a/progs.h b/progs.h
index 415a11d65b519ea1f1b1a7010ff03370ef65a9da..0ee48852ea793e863b49c298d721cd5b957255d4 100644 (file)
--- a/progs.h
+++ b/progs.h
@@ -120,12 +120,17 @@ extern int eval_movement;
 extern int eval_pmodel;
 extern int eval_punchvector;
 extern int eval_viewzoom;
+extern int eval_clientcolors;
+extern int eval_tag_entity;
+extern int eval_tag_index;
 
 #define GETEDICTFIELDVALUE(ed, fieldoffset) (fieldoffset ? (eval_t *)((qbyte *)ed->v + fieldoffset) : NULL)
 
 
 extern mfunction_t *SV_PlayerPhysicsQC;
 extern mfunction_t *EndFrameQC;
+//KrimZon - SERVER COMMANDS IN QUAKEC
+extern mfunction_t *SV_ParseClientCommandQC;
 
 //============================================================================
 
@@ -152,6 +157,8 @@ void PR_Profile_f (void);
 
 void PR_Crash (void);
 
+void SV_IncreaseEdicts(void);
+
 edict_t *ED_Alloc (void);
 void ED_Free (edict_t *ed);
 void ED_ClearEdict (edict_t *e);