blob: 61dd995221625ac81a8681a524d34895757f625e (
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:
//
//=============================================================================//
#include "cbase.h"
#include "c_obj_base_manned_gun.h"
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
class C_ObjectMannedShield : public C_ObjectBaseMannedGun
{
DECLARE_CLASS( C_ObjectMannedShield, C_ObjectBaseMannedGun );
public:
DECLARE_CLIENTCLASS();
C_ObjectMannedShield() {}
private:
C_ObjectMannedShield( const C_ObjectMannedShield & ); // not defined, not accessible
};
IMPLEMENT_CLIENTCLASS_DT( C_ObjectMannedShield, DT_ObjectMannedShield, CObjectMannedShield )
END_RECV_TABLE()
|