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/hl2/extinguisherjet.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/hl2/extinguisherjet.h')
| -rw-r--r-- | mp/src/game/server/hl2/extinguisherjet.h | 110 |
1 files changed, 55 insertions, 55 deletions
diff --git a/mp/src/game/server/hl2/extinguisherjet.h b/mp/src/game/server/hl2/extinguisherjet.h index 61103753..bf328b05 100644 --- a/mp/src/game/server/hl2/extinguisherjet.h +++ b/mp/src/game/server/hl2/extinguisherjet.h @@ -1,55 +1,55 @@ -//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-// $NoKeywords: $
-//=============================================================================//
-
-#ifndef EXTINGUISHERJET_H
-#define EXTINGUISHERJET_H
-#ifdef _WIN32
-#pragma once
-#endif
-
-#include "baseparticleentity.h"
-
-class CExtinguisherJet : public CBaseEntity
-{
-public:
- DECLARE_CLASS( CExtinguisherJet, CBaseEntity );
-
- CExtinguisherJet( void );
-
- virtual void Spawn( void );
- virtual void Precache();
-
- void TurnOn( void );
- void TurnOff( void );
-
- void InputEnable( inputdata_t &inputdata );
- void InputDisable( inputdata_t &inputdata );
- void InputToggle( inputdata_t &inputdata );
-
- virtual void Think( void );
-
- void ExtinguishThink( void );
-
- DECLARE_DATADESC();
- DECLARE_SERVERCLASS();
-
-// Stuff from the datatable.
-public:
- CNetworkVar( bool, m_bEmit ); // Emit particles?
- CNetworkVar( int, m_nLength ); // Length of jet
- CNetworkVar( int, m_nSize ); // Size of jet (as in width and noise of particle movement)
- int m_nRadius; // Radius area to extinguish where jet hits
- float m_flStrength; // Strength of the extinguisher
-
- bool m_bEnabled;
-
- //Used for viewmodel
- CNetworkVar( bool, m_bUseMuzzlePoint );
- bool m_bAutoExtinguish; //Whether extinguisher should put out fires in its think, or let owner do it
-};
-
-#endif // EXTINGUISHERJET_H
+//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef EXTINGUISHERJET_H +#define EXTINGUISHERJET_H +#ifdef _WIN32 +#pragma once +#endif + +#include "baseparticleentity.h" + +class CExtinguisherJet : public CBaseEntity +{ +public: + DECLARE_CLASS( CExtinguisherJet, CBaseEntity ); + + CExtinguisherJet( void ); + + virtual void Spawn( void ); + virtual void Precache(); + + void TurnOn( void ); + void TurnOff( void ); + + void InputEnable( inputdata_t &inputdata ); + void InputDisable( inputdata_t &inputdata ); + void InputToggle( inputdata_t &inputdata ); + + virtual void Think( void ); + + void ExtinguishThink( void ); + + DECLARE_DATADESC(); + DECLARE_SERVERCLASS(); + +// Stuff from the datatable. +public: + CNetworkVar( bool, m_bEmit ); // Emit particles? + CNetworkVar( int, m_nLength ); // Length of jet + CNetworkVar( int, m_nSize ); // Size of jet (as in width and noise of particle movement) + int m_nRadius; // Radius area to extinguish where jet hits + float m_flStrength; // Strength of the extinguisher + + bool m_bEnabled; + + //Used for viewmodel + CNetworkVar( bool, m_bUseMuzzlePoint ); + bool m_bAutoExtinguish; //Whether extinguisher should put out fires in its think, or let owner do it +}; + +#endif // EXTINGUISHERJET_H |