blob: 0603671833bee167a426205a9e294bee0d1fe77e (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "c_obj_base_manned_gun.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class C_ObjectMannedPlasmagun : public C_ObjectBaseMannedGun
{
DECLARE_CLASS( C_ObjectMannedPlasmagun, C_ObjectBaseMannedGun );
public:
DECLARE_CLIENTCLASS();
C_ObjectMannedPlasmagun() {}
private:
C_ObjectMannedPlasmagun( const C_ObjectMannedPlasmagun & ); // not defined, not accessible
};
IMPLEMENT_CLIENTCLASS_DT(C_ObjectMannedPlasmagun, DT_ObjectMannedPlasmagun, CObjectMannedPlasmagun)
END_RECV_TABLE()
|