source-engine/game/shared/tf2base/tf_weapon_knife.h
2022-08-13 03:20:41 +03:00

49 lines
1.1 KiB
C++

//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
//
// Purpose: Weapon Knife Class
//
//=============================================================================
#ifndef TF_WEAPON_KNIFE_H
#define TF_WEAPON_KNIFE_H
#ifdef _WIN32
#pragma once
#endif
#include "tf_weaponbase_melee.h"
#ifdef CLIENT_DLL
#define CTFKnife C_TFKnife
#endif
//=============================================================================
//
// Knife class.
//
class CTFKnife : public CTFWeaponBaseMelee
{
public:
DECLARE_CLASS( CTFKnife, CTFWeaponBaseMelee );
DECLARE_NETWORKCLASS();
DECLARE_PREDICTABLE();
CTFKnife();
virtual void PrimaryAttack( void );
virtual int GetWeaponID( void ) const { return TF_WEAPON_KNIFE; }
virtual float GetMeleeDamage( CBaseEntity *pTarget, int &iCustomDamage );
virtual void SendPlayerAnimEvent( CTFPlayer *pPlayer );
bool IsBehindTarget( CBaseEntity *pTarget );
virtual bool CalcIsAttackCriticalHelper( void );
private:
EHANDLE m_hBackstabVictim;
CTFKnife( const CTFKnife & ) {}
};
#endif // TF_WEAPON_KNIFE_H