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.

38 lines
817 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Team management class. Contains all the details for a specific team
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef SDK_TEAM_H
  8. #define SDK_TEAM_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "utlvector.h"
  13. #include "team.h"
  14. //-----------------------------------------------------------------------------
  15. // Purpose: Team Manager
  16. //-----------------------------------------------------------------------------
  17. class CSDKTeam : public CTeam
  18. {
  19. DECLARE_CLASS( CSDKTeam, CTeam );
  20. DECLARE_SERVERCLASS();
  21. public:
  22. // Initialization
  23. virtual void Init( const char *pName, int iNumber );
  24. };
  25. extern CSDKTeam *GetGlobalSDKTeam( int iIndex );
  26. #endif // TF_TEAM_H