blob: 61b8b2c17e705366b35fed4ad916d13e8605cc9b (
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
33
34
35
36
37
38
39
40
41
42
43
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#include "cbase.h"
#include "c_dod_player.h"
#include "dodoverview.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
class C_DODBombDispenserMapIcon : public C_BaseEntity
{
DECLARE_CLASS( C_DODBombDispenserMapIcon, C_BaseEntity );
DECLARE_NETWORKCLASS();
public:
virtual ~C_DODBombDispenserMapIcon();
virtual void OnDataChanged( DataUpdateType_t type );
};
IMPLEMENT_NETWORKCLASS_ALIASED( DODBombDispenserMapIcon, DT_DODBombDispenserMapIcon )
BEGIN_NETWORK_TABLE(C_DODBombDispenserMapIcon, DT_DODBombDispenserMapIcon )
END_NETWORK_TABLE()
C_DODBombDispenserMapIcon::~C_DODBombDispenserMapIcon( void )
{
GetDODOverview()->RemoveObjectByIndex( entindex() );
}
void C_DODBombDispenserMapIcon::OnDataChanged( DataUpdateType_t type )
{
BaseClass::OnDataChanged( type );
if ( type == DATA_UPDATE_CREATED )
{
GetDODOverview()->AddObject( "sprites/obj_icons/icon_bomb_dispenser", entindex(), -1 );
}
}
|