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.
22 lines
814 B
22 lines
814 B
3 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: Holds the CPortalGameAccount object
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#include "gcsdk/schemasharedobject.h"
|
||
|
|
||
|
//---------------------------------------------------------------------------------
|
||
|
// Purpose: All the account-level information that the GC tracks for TF
|
||
|
//---------------------------------------------------------------------------------
|
||
|
class CPortalGameAccount : public GCSDK::CSchemaSharedObject< CSchGameAccount >
|
||
|
{
|
||
|
public:
|
||
|
CPortalGameAccount() : GCSDK::CSchemaSharedObject< CSchGameAccount >() {}
|
||
|
CPortalGameAccount( uint32 unAccountID ) : GCSDK::CSchemaSharedObject< CSchGameAccount >()
|
||
|
{
|
||
|
Obj().m_unAccountID = unAccountID;
|
||
|
}
|
||
|
};
|