summaryrefslogtreecommitdiff
path: root/game/shared/dod/weapon_dodfullauto.cpp
blob: 08e2b4b04e5b1f45794683f737b2643fde9aa937 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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();
}