This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "basetfplayer_shared.h"
#include "in_buttons.h"
#include "weapon_combatshield.h"
#include "weapon_gas_can.h"
LINK_ENTITY_TO_CLASS( weapon_gas_can, CWeaponGasCan );
PRECACHE_WEAPON_REGISTER( weapon_flame_thrower );
IMPLEMENT_NETWORKCLASS_ALIASED( WeaponGasCan, DT_WeaponGasCan )
BEGIN_NETWORK_TABLE( CWeaponGasCan, DT_WeaponGasCan )
END_NETWORK_TABLE()
BEGIN_PREDICTION_DATA( CWeaponGasCan )
END_PREDICTION_DATA()
// ------------------------------------------------------------------------------------------------ //
// CWeaponGasCan implementation.
// ------------------------------------------------------------------------------------------------ //
CWeaponGasCan::CWeaponGasCan() : CWeaponFlameThrower( true )
{
}