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

45 lines
909 B
C++

//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
//
// Purpose:
//
//=============================================================================
#ifndef TF_WEAPON_WRENCH_H
#define TF_WEAPON_WRENCH_H
#ifdef _WIN32
#pragma once
#endif
#include "tf_weaponbase_melee.h"
#ifdef CLIENT_DLL
#define CTFWrench C_TFWrench
#endif
//=============================================================================
//
// Wrench class.
//
class CTFWrench : public CTFWeaponBaseMelee
{
public:
DECLARE_CLASS( CTFWrench, CTFWeaponBaseMelee );
DECLARE_NETWORKCLASS();
DECLARE_PREDICTABLE();
CTFWrench();
virtual int GetWeaponID( void ) const { return TF_WEAPON_WRENCH; }
virtual void Smack( void );
#ifdef GAME_DLL
void OnFriendlyBuildingHit( CBaseObject *pObject, CTFPlayer *pPlayer );
#endif
private:
CTFWrench( const CTFWrench & ) {}
};
#endif // TF_WEAPON_WRENCH_H