mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-04 07:35:25 +00:00
49 lines
1.1 KiB
C++
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
|