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/weapon_cubemap.cpp | |
| 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/weapon_cubemap.cpp')
| -rw-r--r-- | mp/src/game/server/weapon_cubemap.cpp | 96 |
1 files changed, 48 insertions, 48 deletions
diff --git a/mp/src/game/server/weapon_cubemap.cpp b/mp/src/game/server/weapon_cubemap.cpp index 84e80ea6..212023e3 100644 --- a/mp/src/game/server/weapon_cubemap.cpp +++ b/mp/src/game/server/weapon_cubemap.cpp @@ -1,48 +1,48 @@ -//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-//=============================================================================//
-
-#include "cbase.h"
-
-// memdbgon must be the last include file in a .cpp file!!!
-#include "tier0/memdbgon.h"
-
-class CWeaponCubemap : public CBaseCombatWeapon
-{
-public:
-
- DECLARE_CLASS( CWeaponCubemap, CBaseCombatWeapon );
-
- void Precache( void );
-
- bool HasAnyAmmo( void ) { return true; }
-
- void Spawn( void );
-
- DECLARE_SERVERCLASS();
-};
-
-LINK_ENTITY_TO_CLASS( weapon_cubemap, CWeaponCubemap );
-
-IMPLEMENT_SERVERCLASS_ST( CWeaponCubemap, DT_WeaponCubemap )
-END_SEND_TABLE()
-
-//-----------------------------------------------------------------------------
-// Purpose:
-//-----------------------------------------------------------------------------
-void CWeaponCubemap::Precache( void )
-{
- BaseClass::Precache();
-}
-
-void CWeaponCubemap::Spawn( void )
-{
- BaseClass::Spawn();
-
- //Hack to fix the cubemap weapon not being held by the player.
- //Problem is the model has huge bounds so the new pickup code that checks if the player can see the model fails cause half the entity's bounds are inside the ground.
- //Since this is just a dev tool I made this quick hack so level designers can use it again asap. - Adrian
- UTIL_SetSize( this, Vector( -16, -16, -16 ), Vector( 16, 16, 16 ) );
-}
+//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#include "cbase.h" + +// memdbgon must be the last include file in a .cpp file!!! +#include "tier0/memdbgon.h" + +class CWeaponCubemap : public CBaseCombatWeapon +{ +public: + + DECLARE_CLASS( CWeaponCubemap, CBaseCombatWeapon ); + + void Precache( void ); + + bool HasAnyAmmo( void ) { return true; } + + void Spawn( void ); + + DECLARE_SERVERCLASS(); +}; + +LINK_ENTITY_TO_CLASS( weapon_cubemap, CWeaponCubemap ); + +IMPLEMENT_SERVERCLASS_ST( CWeaponCubemap, DT_WeaponCubemap ) +END_SEND_TABLE() + +//----------------------------------------------------------------------------- +// Purpose: +//----------------------------------------------------------------------------- +void CWeaponCubemap::Precache( void ) +{ + BaseClass::Precache(); +} + +void CWeaponCubemap::Spawn( void ) +{ + BaseClass::Spawn(); + + //Hack to fix the cubemap weapon not being held by the player. + //Problem is the model has huge bounds so the new pickup code that checks if the player can see the model fails cause half the entity's bounds are inside the ground. + //Since this is just a dev tool I made this quick hack so level designers can use it again asap. - Adrian + UTIL_SetSize( this, Vector( -16, -16, -16 ), Vector( 16, 16, 16 ) ); +} |