diff options
| author | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:31:46 -0800 |
|---|---|---|
| committer | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:46:31 -0800 |
| commit | f56bb35301836e56582a575a75864392a0177875 (patch) | |
| tree | de61ddd39de3e7df52759711950b4c288592f0dc /mp/src/game/server/base_transmit_proxy.h | |
| parent | Mark some more files as text. (diff) | |
| download | source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.tar.xz source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.zip | |
Fix line endings. WHAMMY.
Diffstat (limited to 'mp/src/game/server/base_transmit_proxy.h')
| -rw-r--r-- | mp/src/game/server/base_transmit_proxy.h | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/mp/src/game/server/base_transmit_proxy.h b/mp/src/game/server/base_transmit_proxy.h index e55df107..d319779f 100644 --- a/mp/src/game/server/base_transmit_proxy.h +++ b/mp/src/game/server/base_transmit_proxy.h @@ -1,41 +1,41 @@ -//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-//=============================================================================//
-
-#ifndef BASE_TRANSMIT_PROXY_H
-#define BASE_TRANSMIT_PROXY_H
-#ifdef _WIN32
-#pragma once
-#endif
-
-
-#include "ehandle.h"
-
-
-class CBaseEntity;
-
-
-class CBaseTransmitProxy
-{
-public:
-
- CBaseTransmitProxy( CBaseEntity *pEnt );
- virtual ~CBaseTransmitProxy();
-
- // Override this to control the ShouldTransmit behavior of whatever entity the proxy is attached to.
- // bPrevShouldTransmitResult is what the proxy's entity's ShouldTransmit() returned.
- virtual int ShouldTransmit( const CCheckTransmitInfo *pInfo, int nPrevShouldTransmitResult );
-
-
- void AddRef();
- void Release();
-
-private:
- EHANDLE m_hEnt;
- unsigned short m_refCount;
-};
-
-
-#endif // BASE_TRANSMIT_PROXY_H
+//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#ifndef BASE_TRANSMIT_PROXY_H +#define BASE_TRANSMIT_PROXY_H +#ifdef _WIN32 +#pragma once +#endif + + +#include "ehandle.h" + + +class CBaseEntity; + + +class CBaseTransmitProxy +{ +public: + + CBaseTransmitProxy( CBaseEntity *pEnt ); + virtual ~CBaseTransmitProxy(); + + // Override this to control the ShouldTransmit behavior of whatever entity the proxy is attached to. + // bPrevShouldTransmitResult is what the proxy's entity's ShouldTransmit() returned. + virtual int ShouldTransmit( const CCheckTransmitInfo *pInfo, int nPrevShouldTransmitResult ); + + + void AddRef(); + void Release(); + +private: + EHANDLE m_hEnt; + unsigned short m_refCount; +}; + + +#endif // BASE_TRANSMIT_PROXY_H |