X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=client.h;h=f634a223c81c292031df08293c84db613997b1be;hb=e440cc14e7e83d07f12c13279e565591655229d7;hp=fd80cd824e277d62ef8cc61b1c754f788db6d028;hpb=8b554980f64dffdba3e87209cdc5ab49c4741eca;p=xonotic%2Fdarkplaces.git diff --git a/client.h b/client.h index fd80cd82..f634a223 100644 --- a/client.h +++ b/client.h @@ -598,6 +598,8 @@ extern cvar_t cl_name; extern cvar_t cl_color; extern cvar_t cl_rate; extern cvar_t cl_pmodel; +extern cvar_t cl_playermodel; +extern cvar_t cl_playerskin; extern cvar_t cl_upspeed; extern cvar_t cl_forwardspeed; @@ -636,7 +638,7 @@ extern cvar_t cl_explosions_size_start; extern cvar_t cl_explosions_size_end; extern cvar_t cl_explosions_lifetime; extern cvar_t cl_stainmaps; -extern cvar_t cl_stainmapsclearonload; +extern cvar_t cl_stainmaps_clearonload; extern cvar_t cl_prydoncursor; @@ -669,6 +671,7 @@ extern void CL_DecayLights (void); // cl_main // +void CL_Shutdown (void); void CL_Init (void); void CL_EstablishConnection(const char *host); @@ -721,6 +724,7 @@ void CL_BaseMove (void); float CL_KeyState (kbutton_t *key); const char *Key_KeynumToString (int keynum); +int Key_StringToKeynum (const char *str); // // cl_demo.c @@ -739,6 +743,7 @@ void CL_TimeDemo_f(void); // cl_parse.c // void CL_Parse_Init(void); +void CL_Parse_Shutdown(void); void CL_ParseServerMessage(void); void CL_Parse_DumpPacket(void); @@ -786,6 +791,7 @@ extern cvar_t cl_decals_fadetime; void CL_Particles_Clear(void); void CL_Particles_Init(void); +void CL_Particles_Shutdown(void); void CL_ParseParticleEffect (void); void CL_RunParticleEffect (vec3_t org, vec3_t dir, int color, int count);