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.

36 lines
774 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Client side CTFTeam class
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef C_TFC_TEAM_H
  8. #define C_TFC_TEAM_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "c_team.h"
  13. #include "shareddefs.h"
  14. class C_BaseEntity;
  15. class C_BaseObject;
  16. class CBaseTechnology;
  17. //-----------------------------------------------------------------------------
  18. // Purpose: TF's Team manager
  19. //-----------------------------------------------------------------------------
  20. class C_TFCTeam : public C_Team
  21. {
  22. DECLARE_CLASS( C_TFCTeam, C_Team );
  23. DECLARE_CLIENTCLASS();
  24. public:
  25. C_TFCTeam();
  26. virtual ~C_TFCTeam();
  27. };
  28. #endif // C_TFC_TEAM_H