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
+32
View File
@@ -0,0 +1,32 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include "cbase.h"
#include "fx_dod_shared.h"
#include "weapon_dodfullauto.h"
IMPLEMENT_NETWORKCLASS_ALIASED( DODFullAutoWeapon, DT_FullAutoWeapon )
BEGIN_NETWORK_TABLE( CDODFullAutoWeapon, DT_FullAutoWeapon )
END_NETWORK_TABLE()
BEGIN_PREDICTION_DATA( CDODFullAutoWeapon )
END_PREDICTION_DATA()
CDODFullAutoWeapon::CDODFullAutoWeapon()
{
}
void CDODFullAutoWeapon::Spawn()
{
BaseClass::Spawn();
}
void CDODFullAutoWeapon::PrimaryAttack( void )
{
BaseClass::PrimaryAttack();
}