blob: 1890ef6e053e715c0d63aec6ad0d13c732c35c11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef WEAPON_CROWBAR_H
#define WEAPON_CROWBAR_H
#include "basebludgeonweapon.h"
#if defined( _WIN32 )
#pragma once
#endif
#ifdef HL2MP
#error weapon_crowbar.h must not be included in hl2mp. The windows compiler will use the wrong class elsewhere if it is.
#endif
#define CROWBAR_RANGE 75.0f
#define CROWBAR_REFIRE 0.4f
//-----------------------------------------------------------------------------
// CWeaponCrowbar
//-----------------------------------------------------------------------------
class CWeaponCrowbar : public CBaseHLBludgeonWeapon
{
public:
DECLARE_CLASS( CWeaponCrowbar, CBaseHLBludgeonWeapon );
DECLARE_SERVERCLASS();
DECLARE_ACTTABLE();
CWeaponCrowbar();
float GetRange( void ) { return CROWBAR_RANGE; }
float GetFireRate( void ) { return CROWBAR_REFIRE; }
void AddViewKick( void );
float GetDamageForActivity( Activity hitActivity );
virtual int WeaponMeleeAttack1Condition( float flDot, float flDist );
void SecondaryAttack( void ) { return; }
// Animation event
virtual void Operator_HandleAnimEvent( animevent_t *pEvent, CBaseCombatCharacter *pOperator );
private:
// Animation event handlers
void HandleAnimEventMeleeHit( animevent_t *pEvent, CBaseCombatCharacter *pOperator );
};
#endif // WEAPON_CROWBAR_H
|