]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - client.h
redesigned skeletal model loading and rendering to use matrix-palette animation ...
[xonotic/darkplaces.git] / client.h
index 7ded7895bd79fd30b5eb59627ff4c3355a186099..246d425eb4fdb2aa990daeff040c1d88b8b6f34a 100644 (file)
--- a/client.h
+++ b/client.h
@@ -668,6 +668,8 @@ typedef struct client_state_s
        qboolean movement_needupdate;
        // indicates the queue has been updated and should be replayed
        qboolean movement_replay;
+       // timestamps of latest two predicted moves for interpolation
+       double movement_time[2];
        // simulated data (this is valid even if cl.movement is false)
        vec3_t movement_origin;
        vec3_t movement_oldorigin;
@@ -992,6 +994,7 @@ void CL_Effect(vec3_t org, int modelindex, int startframe, int framecount, float
 
 void CL_ClearState (void);
 void CL_ExpandEntities(int num);
+void CL_SetInfo(const char *key, const char *value, qboolean send, qboolean allowstarkey, qboolean allowmodel, qboolean quiet);
 
 
 int  CL_ReadFromServer (void);