Difference between revisions of "Boomerang"

From Team Fortress Wiki
Jump to: navigation, search
m (Auto: infoboxFilter (Review RC#2722965))
m (Fixed a link)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{beta|experimental}}
 
{{beta|experimental}}
{{stub}}
 
 
{{Item infobox
 
{{Item infobox
 
| name          = Boomerang
 
| name          = Boomerang
Line 12: Line 11:
 
}}
 
}}
  
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;
+
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 & ) {}
 
};
 
  
 
{{Unused Content Nav}}
 
{{Unused Content Nav}}

Latest revision as of 21:36, 12 October 2021

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.