hlsdk-xash3d/cl_dll/com_weapons.h

46 lines
1.6 KiB
C
Raw Permalink Normal View History

2017-07-14 15:15:17 +02:00
//========= Copyright (c) 1996-2002, Valve LLC, All rights reserved. ============
2016-06-04 15:24:23 +02:00
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
// com_weapons.h
// Shared weapons common function prototypes
#pragma once
2016-06-04 15:24:23 +02:00
#if !defined( COM_WEAPONSH )
#define COM_WEAPONSH
#include "hud_iface.h"
extern "C"
{
void _DLLEXPORT HUD_PostRunCmd( struct local_state_s *from, struct local_state_s *to, struct usercmd_s *cmd, int runfuncs, double time, unsigned int random_seed );
}
2017-06-29 15:56:03 +02:00
void COM_Log( const char *pszFile, const char *fmt, ... );
2016-06-04 15:24:23 +02:00
int CL_IsDead( void );
float UTIL_SharedRandomFloat( unsigned int seed, float low, float high );
int UTIL_SharedRandomLong( unsigned int seed, int low, int high );
int HUD_GetWeaponAnim( void );
void HUD_SendWeaponAnim( int iAnim, int body, int force );
2017-06-29 15:56:03 +02:00
void HUD_PlaySound( const char *sound, float volume );
void HUD_PlaybackEvent( int flags, const struct edict_s *pInvoker, unsigned short eventindex, float delay, const float *origin, const float *angles, float fparam1, float fparam2, int iparam1, int iparam2, int bparam1, int bparam2 );
2016-06-04 15:24:23 +02:00
void HUD_SetMaxSpeed( const struct edict_s *ed, float speed );
2017-06-29 15:56:03 +02:00
int stub_PrecacheModel( const char* s );
int stub_PrecacheSound( const char* s );
2016-06-04 15:24:23 +02:00
unsigned short stub_PrecacheEvent( int type, const char *s );
2017-07-10 23:24:19 +02:00
const char *stub_NameForFunction( void *function );
2016-07-03 15:39:55 +02:00
void stub_SetModel( struct edict_s *e, const char *m );
2016-06-04 15:24:23 +02:00
extern cvar_t *cl_lw;
extern int g_runfuncs;
extern vec3_t v_angles;
2022-07-21 16:46:05 +02:00
extern vec3_t v_client_aimangles;
2016-06-04 15:24:23 +02:00
extern float g_lastFOV;
extern struct local_state_s *g_finalstate;
2016-07-03 15:39:55 +02:00
#endif