source-engine/game/shared/tf2base/tf_weapon_bottle.h
2022-08-10 19:52:28 +03:00

47 lines
1022 B
C++

//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
//
// Purpose:
//
//=============================================================================
#ifndef TF_WEAPON_BOTTLE_H
#define TF_WEAPON_BOTTLE_H
#ifdef _WIN32
#pragma once
#endif
#include "tf_weaponbase_melee.h"
#ifdef CLIENT_DLL
#define CTFBottle C_TFBottle
#endif
//=============================================================================
//
// Bottle class.
//
class CTFBottle : public CTFWeaponBaseMelee
{
public:
DECLARE_CLASS( CTFBottle, CTFWeaponBaseMelee );
DECLARE_NETWORKCLASS();
DECLARE_PREDICTABLE();
CTFBottle();
virtual int GetWeaponID( void ) const { return TF_WEAPON_BOTTLE; }
virtual void Smack( void );
virtual void WeaponReset( void );
virtual bool DefaultDeploy( char *szViewModel, char *szWeaponModel, int iActivity, char *szAnimExt );
void SwitchBodyGroups( void );
private:
CTFBottle( const CTFBottle & ) {}
CNetworkVar( bool, m_bBroken );
};
#endif // TF_WEAPON_BOTTLE_H