summaryrefslogtreecommitdiff
path: root/game/server/tf2/entity_burn_effect.h
blob: 882abd55ecfaa49ca96d470d246458bb49bba256 (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================//

#ifndef ENTITY_BURN_EFFECT_H
#define ENTITY_BURN_EFFECT_H
#ifdef _WIN32
#pragma once
#endif


#include "baseentity.h"
#include "server_class.h"


class CEntityBurnEffect : public CBaseEntity
{
public:
	
	DECLARE_CLASS( CEntityBurnEffect, CBaseEntity );
	DECLARE_SERVERCLASS();

	static CEntityBurnEffect* Create( CBaseEntity *pBurningEntity );


// Overrides.
public:

	virtual	int		UpdateTransmitState();
	virtual int		ShouldTransmit( const CCheckTransmitInfo *pInfo	);


private:
	CNetworkHandle( CBaseEntity, m_hBurningEntity );
};


#endif // ENTITY_BURN_EFFECT_H