You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
952 B
36 lines
952 B
5 years ago
|
//========= 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 )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|