diff options
Diffstat (limited to 'game/shared/tf/tf_coach_rating.h')
| -rw-r--r-- | game/shared/tf/tf_coach_rating.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/game/shared/tf/tf_coach_rating.h b/game/shared/tf/tf_coach_rating.h new file mode 100644 index 0000000..3712c1f --- /dev/null +++ b/game/shared/tf/tf_coach_rating.h @@ -0,0 +1,36 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: Holds the CTFCoachRating object +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef TF_COACH_RATING_H +#define TF_COACH_RATING_H +#ifdef _WIN32 +#pragma once +#endif + +#ifdef GC +#include "gcsdk/schemasharedobject.h" + +//--------------------------------------------------------------------------------- +// Purpose: +//--------------------------------------------------------------------------------- +class CTFCoachRating : public GCSDK::CSchemaSharedObject< CSchCoachRating, k_EEconTypeCoachRating > +{ +#ifdef GC_DLL + DECLARE_CLASS_MEMPOOL( CTFCoachRating ); +#endif + +public: + CTFCoachRating() {} + CTFCoachRating( uint32 unAccountID ) + { + Obj().m_unAccountIDCoach = unAccountID; + } +}; + +#endif // GC + +#endif // TF_COACH_RATING_H |