Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
463 B

  1. //========= Copyright � 2011-2011, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: No defuse area ent
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #include "cbase.h"
  8. #include "triggers.h"
  9. class CNoDefuseArea : public CBaseTrigger
  10. {
  11. public:
  12. DECLARE_CLASS( CNoDefuseArea, CBaseTrigger );
  13. DECLARE_DATADESC();
  14. void Spawn();
  15. void EXPORT NoDefuseAreaTouch( CBaseEntity* pOther );
  16. };