summaryrefslogtreecommitdiff
path: root/game/shared/tf/tf_coach_rating.h
blob: 3712c1f154d0b0946b0b263bd29ae720ffee592b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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