Boomerang

From Team Fortress Wiki
Revision as of 03:00, 24 April 2020 by WindBOT (talk | contribs) (Auto: infoboxFilter (Review RC#2722965))
Jump to: navigation, search

The Boomerang is a scrapped melee weapon that not much is known about. The functionality code for the Boomerang is almost entirely nonexistent save for some entity class information;

//=============================================================================
//
// Boomerang class.
//
class CTFBoomerang : public CTFWeaponBaseMelee
{
public:

       DECLARE_CLASS( CTFBoomerang, CTFWeaponBaseMelee );
       DECLARE_NETWORKCLASS(); 
       DECLARE_PREDICTABLE();

       CTFBoomerang();
       virtual int        GetWeaponID( void ) const        { return TF_WEAPON_BOOMERANG; }

private:

       CTFBoomerang( const CTFBoomerang & ) {}
};