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.
37 lines
873 B
37 lines
873 B
5 years ago
|
//========= 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
|