Team Fortress 2 Source Code as on 22/4/2020
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.

33 lines
778 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. #ifndef C_FUNC_CAPTURE_ZONE_H
  7. #define C_FUNC_CAPTURE_ZONE_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. class C_CaptureZone;
  12. DECLARE_AUTO_LIST( ICaptureZoneAutoList );
  13. //-----------------------------------------------------------------------------
  14. // Purpose:
  15. //-----------------------------------------------------------------------------
  16. class C_CaptureZone : public C_BaseEntity, public ICaptureZoneAutoList
  17. {
  18. DECLARE_CLASS( C_CaptureZone, C_BaseEntity );
  19. public:
  20. DECLARE_CLIENTCLASS();
  21. bool IsDisabled( void ){ return m_bDisabled; }
  22. private:
  23. bool m_bDisabled;
  24. };
  25. #endif // C_FUNC_CAPTURE_ZONE_H