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
873 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: Holds the CTFCoachRating object
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef TF_COACH_RATING_H
  8. #define TF_COACH_RATING_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #ifdef GC
  13. #include "gcsdk/schemasharedobject.h"
  14. //---------------------------------------------------------------------------------
  15. // Purpose:
  16. //---------------------------------------------------------------------------------
  17. class CTFCoachRating : public GCSDK::CSchemaSharedObject< CSchCoachRating, k_EEconTypeCoachRating >
  18. {
  19. #ifdef GC_DLL
  20. DECLARE_CLASS_MEMPOOL( CTFCoachRating );
  21. #endif
  22. public:
  23. CTFCoachRating() {}
  24. CTFCoachRating( uint32 unAccountID )
  25. {
  26. Obj().m_unAccountIDCoach = unAccountID;
  27. }
  28. };
  29. #endif // GC
  30. #endif // TF_COACH_RATING_H